-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 KB
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
{
"name": "mania-render-website",
"version": "1.5.1",
"scripts": {
"prepare": "npx husky install",
"dev": "vite",
"build": "tsc && vite build",
"rebuild": "rm -rf dist && vite build",
"serve": "vite preview",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"commit-check": "node script/commitCheck.js",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"antd": "^4.16.13",
"axios": "^0.24.0",
"i18next": "^21.5.2",
"less": "^4.1.2",
"lodash": "^4.17.21",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-i18next": "^11.14.2",
"react-router": "^6.0.2",
"react-router-dom": "^6.0.2",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@types/lodash": "^4.14.177",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router": "^5.1.17",
"@types/react-router-dom": "^5.3.2",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-react": "^1.0.0",
"chalk": "^4.1.2",
"eslint": "^8.2.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"husky": "^7.0.4",
"typescript": "^4.3.2",
"vite": "^2.6.4"
}
}