forked from zk8080/cloud-music-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.26 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
{
"name": "cloud-music-pro",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "npm run lint:script && npm run lint:style",
"lint:style": "stylelint --fix \"src/**/*.{css,scss}\"",
"lint:script": "eslint --ext .js,.jsx,.ts,.tsx --fix --quiet ./",
"postinstall": "husky install"
},
"dependencies": {
"@douyinfe/semi-icons": "^2.18.2",
"@douyinfe/semi-illustrations": "^2.18.2",
"@douyinfe/semi-ui": "^2.18.0",
"@semi-bot/semi-theme-doucreator": "^1.0.18",
"@tanstack/react-query": "^4.3.7",
"@tanstack/react-query-devtools": "^4.3.9",
"add": "^2.0.6",
"ahooks": "^3.7.2",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-router-dom": "^6.3.0",
"recoil": "^0.7.6"
},
"devDependencies": {
"@commitlint/cli": "^17.1.1",
"@commitlint/config-conventional": "^17.1.0",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"@vitejs/plugin-react": "^2.0.1",
"autoprefixer": "^10.4.8",
"commitlint": "^17.1.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"http-proxy-middleware": "^2.0.6",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.1.0",
"prettier": "^2.7.1",
"sass": "^1.54.5",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^28.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"vite": "^3.0.7",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^3.0.7",
"vite-plugin-svgr": "^2.2.1"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts}": [
"npm run lint:script",
"git add ."
],
"**/*.{css,scss}": [
"npm run lint:style",
"git add ."
]
}
}