-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.06 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "vite-project-test",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "npm-run-all check-ts build-dist",
"build-dist": "vite build --config ./config/vite.prod.config.ts",
"check-ts": "tsc -p tsconfig.json --noEmit",
"check-ts-watch": "tsc -p tsconfig.json --noEmit --watch",
"dev": "vite --config ./config/vite.dev.config.ts",
"lint": "eslint --ext .ts,.tsx,.js src",
"lint-fix": "eslint --ext .ts,.tsx,.js src --fix",
"preview": "vite preview",
"preinstall": "[ -f ./scripts/npm-hooks/preinstall.js ] && node ./scripts/npm-hooks/preinstall.js || true",
"check": "npm-run-all -p check-ts lint",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"dependencies": {
"@ant-design/icons": "~5.0.1",
"@rematch/core": "~2.2.0",
"@rematch/immer": "~2.1.3",
"@rematch/loading": "~2.1.2",
"ahooks": "~3.7.6",
"antd": "~4.24.8",
"axios": "~1.3.5",
"classnames": "~2.3.2",
"connected-react-router": "~6.9.3",
"dayjs": "~1.11.7",
"history": "~5.3.0",
"immer": "~9.0.21",
"less": "~4.1.3",
"lodash-es": "~4.17.21",
"normalize.css": "~8.0.1",
"qs": "~6.11.1",
"react": "16.14.0",
"react-beautiful-dnd": "~13.1.1",
"react-dom": "16.14.0",
"react-intl": "~6.3.2",
"react-redux": "~8.0.5",
"react-resizable": "~3.0.5",
"react-router": "~6.10.0",
"react-router-dom": "~6.10.0"
},
"devDependencies": {
"@commitlint/cli": "~17.6.1",
"@commitlint/config-conventional": "~17.6.1",
"@commitlint/cz-commitlint": "~17.5.0",
"@trivago/prettier-plugin-sort-imports": "~4.1.1",
"@types/lodash-es": "~4.17.7",
"@types/node": "~18.15.11",
"@types/react": "16.14.35",
"@types/react-beautiful-dnd": "~13.1.4",
"@types/react-dom": "16.9.8",
"@types/react-resizable": "~3.0.4",
"@typescript-eslint/eslint-plugin": "~5.59.0",
"@typescript-eslint/parser": "~5.59.0",
"@vitejs/plugin-legacy": "~4.0.2",
"@vitejs/plugin-react": "~4.0.0",
"@vitejs/plugin-react-swc": "~3.0.0",
"commitizen": "~4.3.0",
"cz-git": "~1.6.1",
"eslint": "~8.38.0",
"eslint-config-prettier": "~8.8.0",
"eslint-import-resolver-alias": "~1.1.2",
"eslint-import-resolver-typescript": "~3.5.5",
"eslint-plugin-import": "~2.27.5",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-react": "~7.32.2",
"eslint-plugin-react-hooks": "~4.6.0",
"husky": "~8.0.3",
"lint-staged": "~13.2.1",
"npm-run-all": "~4.1.5",
"postcss-less": "~6.0.0",
"postcss-nesting": "~11.2.2",
"postcss-preset-env": "~8.3.2",
"prettier": "~2.8.7",
"prettier-plugin-packagejson": "~2.4.3",
"react-dev-inspector": "~1.8.4",
"stylelint": "~15.5.0",
"stylelint-order": "~6.0.3",
"terser": "~5.16.9",
"typescript": "~4.9.3",
"vite": "~4.2.0",
"vite-plugin-importer": "~0.2.5",
"vite-plugin-inspect": "~0.7.23"
},
"engines": {
"node": ">=14.18",
"npm": ">=6.14.15"
}
}