-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.02 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.02 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "project-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "vite serve",
"build": "vite build",
"preview": "vite preview",
"eslint": "eslint --fix src/ --ext .js,.jsx,.ts,.tsx",
"stylelint": "stylelint 'src/**/*.{css,less,scss}'",
"stylelint:fix": "stylelint --fix 'src/**/*.{css,less,scss}",
"prepare": "npx husky install && npx msw init ./ --save"
},
"keywords": [],
"author": "linxiangjun",
"license": "ISC",
"dependencies": {
"@tanstack/react-query": "^4.29.19",
"ahooks": "^3.7.8",
"axios": "^1.4.0",
"lodash-es": "^4.17.21",
"mobx": "^6.9.0",
"mobx-react-lite": "^3.4.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.13.0"
},
"devDependencies": {
"@locator/runtime": "^0.2.4",
"@swc/helpers": "^0.5.1",
"@types/node": "^20.3.1",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitejs/plugin-react-swc": "^3.3.2",
"assert": "^2.0.0",
"encoding": "^0.1.13",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"less": "^4.1.3",
"lint-staged": "^13.2.2",
"msw": "^1.2.2",
"postcss-less": "^6.0.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.22",
"stylelint": "^15.8.0",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-standard": "^33.0.0",
"stylus": "^0.59.0",
"sugarss": "^4.0.1",
"terser": "^5.18.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-externals": "^0.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"msw": {
"workerDirectory": ""
}
}