-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "react-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "^20.9.0"
},
"scripts": {
"postinstall": "run-s -n \"postinstall:*\"",
"postinstall:update-vscode-settings": "run-s update-vscode-settings",
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"update-vscode-settings": "tsx ./scripts/update-vscode-settings.ts",
"code-review": "run-s -n \"code-review:*\"",
"code-review:tsc": "tsc -b",
"code-review:prettier": "prettier . --check --log-level=warn"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remeda": "^2.3.0"
},
"devDependencies": {
"@types/node": "20.9.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"jsonc-parser": "^3.3.1",
"npm-run-all2": "^6.2.0",
"prettier": "3.3.2",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vite": "^5.3.3"
},
"packageManager": "yarn@4.2.2"
}