-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.82 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
{
"name": "jac-front-end",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"build:dev": "tsc && vite build --mode dev",
"build:test": "tsc && vite build --mode test",
"build:prod": "tsc && vite build --mode prod",
"install:code-lint": "sh ./code-lint.sh",
"install:commit-lint": "sh ./commit-lint.sh",
"prepare": "husky install",
"pre-commit": "yarn lint-staged",
"lint": "tsc --noEmit && eslint src --ext .ts,.tsx ",
"lint:fix": "tsc --noEmit && eslint --fix --ext src --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"src/**/*.less\"",
"commit": "git-cz"
},
"dependencies": {
"antd": "^4.17.1",
"axios": "^0.24.0",
"driver.js": "^0.9.8",
"history": "^5.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "6.0.0-beta.0",
"zustand": "^3.6.5"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@types/node": "^16.11.10",
"@types/qs": "^6.9.7",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-react": "^1.0.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.2",
"cz-customizable": "^6.3.0",
"eslint": "^8.3.0",
"husky": "^7.0.4",
"less": "^4.1.2",
"less-vars-to-js": "^1.3.0",
"lint-staged": "^12.1.2",
"mockjs": "^1.1.0",
"pont-engine": "^1.0.13",
"prettier": "^2.4.1",
"qs": "^6.10.1",
"typescript": "^4.3.2",
"vite": "^2.6.4",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-style-import": "^1.3.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}