-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.78 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
{
"name": "vite-qwe",
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"dev": "vite --port 3333 --open",
"husky": "husky install || exit 0",
"preinstall": "only-allow pnpm",
"postinstall": "pnpm husky && pnpm pretty",
"lint": "eslint --ext .ts,.tsx --fix --quiet ./src",
"pretty": "pretty-quick && prettier-package-json --write",
"preview": "vite preview"
},
"dependencies": {
"axios": "^1.2.1",
"dayjs": "^1.11.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-query": "^3.39.2",
"react-router-dom": "^6.6.1",
"react-use": "^17.4.0"
},
"devDependencies": {
"@breathelife/prettier-plugin-sort-imports": "^3.0.5",
"@types/node": "^18.11.17",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@vitejs/plugin-react": "^3.0.0",
"commitlint": "^11.0.0",
"commitlint-config-gitmoji": "^2.2.6",
"cross-env": "^7.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"mockjs": "^1.1.0",
"only-allow": "^1.1.1",
"prettier": "^2.8.1",
"prettier-package-json": "^2.7.0",
"pretty-quick": "^3.1.3",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mock": "^2.9.6"
},
"engines": {
"node": ">=16",
"pnpm": ">=7"
}
}