-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.11 KB
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
{
"name": "drone_cloud_api",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "export NODE_ENV=production && node dist/server.js",
"dev": "export NODE_ENV=development && nodemon --watch 'src/**' --exec ts-node src/server.ts",
"build": "tsc -b"
},
"keywords": [],
"author": "Tony Chung",
"license": "ISC",
"dependencies": {
"amqplib": "^0.8.0",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.2",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.3.1",
"typeorm": "^0.2.38",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.11.6",
"@types/uuid": "^8.3.1",
"nodemon": "^2.0.14",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}