-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.74 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
{
"name": "react-admin",
"version": "0.0.0",
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"commit": "git add . && git-cz",
"eslint:fix": "eslint --fix --ext .js,.jsx src",
"prettier:fix": "prettier --write ./src/../*.{less,js,jsx,json}",
"style:fix": "stylelint \"src/**/*.(less|css)\" --fix",
"format:all": "npm run style:fix && npm run eslint:fix && npm run prettier:fix",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"antd": "^4.17.2",
"axios": "^0.24.0",
"dayjs": "^1.10.7",
"nprogress": "^0.2.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0",
"redux-thunk": "^2.4.1",
"store": "^2.0.12"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-react": "^7.16.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@vitejs/plugin-react": "^1.0.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"git-cz": "^4.8.0",
"husky": "^7.0.0",
"less": "^4.1.2",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"redux-devtools-extension": "^2.13.9",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^5.0.0",
"vite": "^2.6.4",
"react-router-config": "^5.1.1",
"vite-plugin-style-import": "^1.4.0"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"lint-staged": {
"*.{js,jsx}": [
"npm run format:all",
"git add ."
]
}
}