-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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": "vjs",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "NODE_NO_WARNINGS=1 nodemon --watch './src/vite-server.ts' --exec 'node --loader ts-node/esm' src/vite-server.ts",
"build": "npm run build:ssr && npm run build:api",
"preview": "vite preview",
"build:ssr": "tsc && vite build -c vite.config.ssr.ts",
"build:api": "rm -rf .stormkit/api && node --loader ts-node/esm vite.config.api.ts"
},
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@stormkit/serverless": "^1.1.3",
"@types/express": "^4.17.17",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.2.3",
"@types/nunjucks": "^3.2.5",
"@vitejs/plugin-react": "^4.0.0",
"@vituum/vite-plugin-nunjucks": "^1.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"glob": "^10.2.6",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vite": "^4.3.3",
"vite-plugin-nunjucks": "^0.1.10",
"vite-plugin-static-copy": "^0.15.0"
},
"dependencies": {
"handlebars": "^4.7.8",
"path-to-regexp": "^6.2.1"
}
}