-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 999 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 999 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
34
35
36
{
"name": "template-express",
"version": "0.0.40",
"type": "module",
"private": true,
"dependencies": {
"compression": "^1.7.4",
"express": "^4.19.1",
"frames.js": "^0.22.0",
"react": "^18.2.0",
"sirv": "^2.0.4"
},
"devDependencies": {
"@frames.js/debugger": "^0.5.0",
"@types/express": "^4.17.21",
"@types/node": "^18.17.0",
"@types/react": "^18.2.45",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"typescript": "^5.4.5",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1"
},
"engines": {
"node": ">=18.17.0 <=22"
},
"scripts": {
"dev": "node ./scripts/dev-script.js",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --ssrManifest --outDir dist/client",
"build:server": "vite build --ssr src/entry-server.tsx --outDir dist/server",
"preview": "cross-env NODE_ENV=production node server"
}
}