-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.35 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.35 KB
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
72
73
{
"name": "react-project-init",
"version": "1.0.0",
"description": "project structure initial file(Out-of-the-box), react+ts+tailwind+webpck5+eslint+router+mui+jotai",
"main": "index.js",
"scripts": {
"client:dev": "webpack --config config/webpack/webpack.dev.js",
"client:server": "webpack serve --config config/webpack/webpack.dev.js",
"client:prod": "webpack --config config/webpack/webpack.prod.js",
"analyze": "cross-env ANALYZE=true npm run client:prod",
"lint:fix": "tsc --noEmit & eslint ./src --fix",
"lint": "eslint ./src",
"test": "jest --collectCoverage --reporters default jest-stare",
"test:e2e": "cypress open",
"test:ui": "majestic"
},
"jest-stare": {
"coverageLink": "../jest-coverage/lcov-report/index.html",
"resultDir": "docs/jest-stare"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.1.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-router-dom": "^6.27.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@swc/core": "^1.8.0",
"@swc/helpers": "^0.5.15",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@welldone-software/why-did-you-render": "^8.0.3",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"cypress": "^13.15.2",
"eslint": "^9.14.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-stare": "^2.5.2",
"jsonc-eslint-parser": "^2.4.0",
"majestic": "^1.8.1",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"style-loader": "^4.0.0",
"swc-loader": "^0.2.6",
"tailwindcss": "^3.4.14",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vconsole": "^3.15.1",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}