-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "react-starter",
"description": "A React starter project with SSR, SSG, and API support using Stormkit",
"version": "1.0.0",
"type": "module",
"bin": {
"create-react-app": "./bin/create-app.cjs"
},
"author": {
"email": "hello@stormkit.io",
"name": "Stormkit",
"url": "https://www.stormkit.io"
},
"scripts": {
"dev": "tsx ./src/vite-server.ts",
"build": "npm run build:spa && npm run build:ssr && npm run build:ssg && npm run build:api",
"build:spa": "vite build",
"build:ssg": "tsx ./src/vite-server.ts --ssg",
"build:ssr": "vite build -c vite.config.ssr.ts",
"build:api": "rm -rf .stormkit/api && tsx vite.config.api.ts",
"test": "jest"
},
"devDependencies": {
"@stormkit/serverless": "^2.7.4",
"@types/express": "^5.0.6",
"@types/glob": "^8.1.0",
"@types/node": "^24.10.9",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"dotenv": "^16.6.1",
"express": "^5.2.1",
"glob": "^10.5.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vite-plugin-static-copy": "^3.2.0"
},
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "^7.6.2",
"react-router-dom": "^7.13.0"
}
}