-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "my-react-app",
"version": "0.0.0",
"scripts": {
"start": "vite",
"build:test": "vite build --mode test",
"build:uat": "vite build --mode uat",
"build": "vite build",
"lint-fix": "eslint --fix --ext .js,.ts,.tsx src/",
"preview": "vite preview"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"eslintConfig": {
"extends": [
"vite.config.ts"
]
},
"dependencies": {
"antd": "^4.16.10",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"@vitejs/plugin-react-refresh": "^1.3.1",
"babel-plugin-import": "^1.13.3",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^7.0.1",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"less-vars-to-js": "^1.3.0",
"typescript": "^4.3.2",
"vite": "^2.4.4",
"vite-plugin-imp": "^2.0.7",
"vite-plugin-importer": "^0.2.5"
}
}