-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "monorepo-template-react",
"private": true,
"version": "1.0.0",
"type": "module",
"author": {
"email": "[email protected]",
"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": "SSG=true tsx ./src/vite-server.ts",
"build:ssr": "vite build -c vite.config.ssr.ts",
"build:api": "rm -rf .stormkit/api && tsx vite.config.api.ts",
"test": "jest"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@stormkit/serverless": "^2.3.4",
"@types/express": "^4.17.21",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"babel-jest": "^29.7.0",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"glob": "^10.4.5",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"react-router": "^6.6.2",
"react-router-dom": "^6.26.2",
"ts-jest": "^29.2.5",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vite": "^5.4.5",
"vite-plugin-static-copy": "^1.0.6"
}
}