-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 861 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": "deployment-platform-api",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=16.0.0 <23",
"npm": ">=7.0.0"
},
"scripts": {
"dev": "ts-node-dev --respawn src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"@types/dotenv": "^8.2.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"express-fileupload": "^1.4.3",
"jsonwebtoken": "^9.0.2",
"unzipper": "^0.10.14",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.4.4",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.10.0",
"@types/unzipper": "^0.10.9",
"@types/uuid": "^9.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
}
}