-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "react-summit-project",
"version": "1.0.0",
"description": "Sample Front-end solution for 2024, React18,DaisyUI, Typescript, Cypress, PWA",
"author": "masoudit",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --mode development --env development serve --config webpack/webpack.config.dev.js",
"build": "webpack --mode production --config webpack/webpack.config.prod.js",
"analyzer": "webpack --mode production --env production-report --config webpack/webpack.config.prod.js ",
"serve": "webpack --config webpack/webpack.config.prod.js && serve -p 3050 -s dist/",
"serve-simple": "serve -p 3051 -s dist/",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
"test:e2e": "cypress open"
},
"dependencies": {
"@tanstack/react-table": "^8.11.6",
"axios": "^1.6.5",
"i18next": "^23.7.16",
"react": "^18.2.0",
"react-confirm-alert": "^3.0.6",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
"react-i18next": "^14.0.0",
"react-router-dom": "6.15.0",
"react-select": "^5.8.0",
"react-toastify": "^9.1.3",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/copy-webpack-plugin": "^10.1.0",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"autoprefixer": "^10.4.16",
"copy-webpack-plugin": "^12.0.0",
"css-loader": "^6.9.0",
"cypress": "^13.6.2",
"daisyui": "^4.6.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.6.0",
"less": "^4.2.0",
"less-loader": "^11.1.4",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.7.7",
"msw": "^2.0.13",
"postcss-loader": "^7.3.4",
"prettier": "^3.1.1",
"style-loader": "^3.3.4",
"tailwindcss": "^3.4.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"msw": {
"workerDirectory": "public"
}
}