-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 906 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 906 Bytes
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
{
"name": "rspack-react-ts-starter",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "concurrently --kill-others \"rspack serve\" \"tsr watch\"",
"build": "rspack build",
"preview": "rspack preview",
"format": "prettier --write ./src --cache",
"gen-route": "tsr generate",
"route-watch": "tsr watch"
},
"dependencies": {
"@tanstack/react-router": "^1.22.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@rspack/cli": "0.5.8",
"@rspack/core": "0.5.8",
"@rspack/plugin-react-refresh": "0.5.8",
"@tanstack/router-cli": "^1.20.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"prettier": "^3.2.5",
"react-refresh": "^0.14.0",
"tailwindcss": "^3.4.1"
}
}