-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 825 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 825 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
{
"name": "english-test-program",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch server/index.ts",
"prebuild": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --outDir dist/client",
"build:server": "tsc -p tsconfig.server.json",
"start": "NODE_ENV=production node dist/server/index.js",
"typecheck": "tsc --noEmit && tsc -p tsconfig.server.json --noEmit"
},
"dependencies": {
"express": "^4.19.2",
"multer": "^2.1.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.10",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vite": "^8.0.14"
}
}