forked from SmartEducationProject/SmartEducation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.07 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
71
72
73
{
"name": "wisdom_education",
"private": true,
"version": "1.0.22",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"test": "test",
"eslint": "eslint src/ --ext .ts,.tsx,.js,.jsx --fix --cache",
"mock": "json-server --watch __json_server_mock__/db.json --routes __json_server_mock__/routes.json --port 3000",
"deploy:dev": "pnpm run build && node deploy/deploy-dev.mjs",
"deploy:prod": "pnpm run build && node deploy/deploy-prod.mjs"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@types/qs": "^6.9.7",
"antd": "4.23.1",
"axios": "^0.27.2",
"countup.js": "^2.3.2",
"echarts": "^5.3.3",
"echarts-for-react": "^3.0.2",
"html2canvas": "^1.4.1",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"normalize.css": "^8.0.1",
"prettier": "^2.7.1",
"qs": "6.10.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "3.38.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@vitejs/plugin-react": "^2.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"json-server": "^0.17.0",
"node-ssh": "^13.0.0",
"postcss": "^8.4.14",
"postcss-preset-env": "^7.7.2",
"postcss-px-to-viewport": "^1.1.1",
"rollup-plugin-visualizer": "^5.8.1",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vite-plugin-imp": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,css,md,tsx,ts,less,json}": "prettier --write"
}
}