-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 2.1 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
{
"name": "vite-react-ts-starter",
"type": "module",
"version": "0.1.0",
"author": "zhixiangyao <[email protected]> <https://github.com/zhixiangyao>",
"license": "MIT",
"homepage": "https://github.com/zhixiangyao/vite-react-ts-starter",
"repository": {
"type": "git",
"url": "git+https://github.com/zhixiangyao/vite-react-ts-starter.git"
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "npm run build && vite preview",
"preview:dist": "vite preview",
"lint": "eslint --cache --cache-location node_modules/.cache/eslint/",
"lint:stylelint": "stylelint --fix \"./**/*.css\" --cache --cache-location node_modules/.cache/stylelint/",
"lint-staged": "lint-staged",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"@emotion/react": "11.13.5",
"clsx": "2.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-is": "18.3.1",
"react-router": "7.0.2",
"react-router-dom": "7.0.2",
"zustand": "5.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "3.12.1",
"@eslint-react/eslint-plugin": "1.23.2",
"@types/node": "22.10.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@vitejs/plugin-react-swc": "3.7.2",
"autoprefixer": "10.4.20",
"dotenv": "16.4.7",
"eslint": "9.16.0",
"eslint-plugin-react-refresh": "0.4.16",
"lint-staged": "15.2.10",
"postcss-load-config": "6.0.1",
"postcss-styled-syntax": "0.7.0",
"simple-git-hooks": "2.11.1",
"stylelint": "16.11.0",
"stylelint-config-standard": "36.0.1",
"stylelint-order": "6.0.4",
"tailwindcss": "3.4.16",
"typescript": "5.7.2",
"vite": "6.0.2",
"vite-plugin-checker": "0.8.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"eslint --cache --cache-location node_modules/.cache/eslint/"
],
"./**/*.css": [
"stylelint --fix --cache --cache-location node_modules/.cache/stylelint/"
]
}
}