-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"scripts": {
"start": "npm run dev",
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"lint:fix": "eslint --fix --ext .js,.jsx ./src && stylelint --fix \"src/**/*.less\" --syntax less"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint",
"*.{css,less,scss,styl}": "stylelint"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"antd": "^4.19.2",
"axios": "^0.26.1",
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.2"
},
"devDependencies": {
"@ecomfe/eslint-config": "^4.0.0",
"@ecomfe/stylelint-config": "^1.1.2",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-replace": "^4.0.0",
"@vitejs/plugin-legacy": "^2.0.1",
"@vitejs/plugin-react": "^2.0.1",
"babel-eslint": "^10.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^7.0.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^4.3.8",
"less": "^4.1.2",
"lint-staged": "^12.3.5",
"rollup": "^2.56.3",
"rollup-plugin-copy": "^3.4.0",
"stylelint": "^13.13.1",
"vite": "^3.0.9",
"vite-plugin-full-reload": "^1.0.0",
"vite-plugin-html": "^3.2.0",
"vite-plugin-imp": "^2.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}