generated from crazyurus/create-react-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.95 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
{
"name": "todomvc",
"version": "1.0.0",
"private": true,
"description": "基于 React + zustand 的 TodoMVC 实现",
"scripts": {
"analyze": "cross-env ANALYZE=TRUE craco build",
"build": "craco build",
"prepare": "husky install",
"start": "craco start"
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": "eslint --fix",
"src/**/*": "prettier --write --ignore-unknown",
"src/**/*.{css,scss}": "stylelint"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"classnames": "^2.3.2",
"immer": "^10.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.2",
"todomvc-app-css": "^2.4.3",
"uid": "^2.0.2",
"zustand": "^4.4.7"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@craco/craco": "^7.0.0",
"@craco/types": "^7.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"craco-css-modules": "^1.0.4",
"craco-esbuild": "^0.5.1",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"prettier-plugin-packagejson": "^2.4.9",
"react-scripts": "^5.0.1",
"sass": "^1.58.3",
"speed-measure-webpack-plugin": "^1.5.0",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-config-standard-scss": "^7.0.1",
"typescript": "^5.3.3",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-subresource-integrity": "^5.1.0"
},
"packageManager": "pnpm@8.14.0",
"cracoConfig": "./config/craco.js"
}