-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.44 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "draw-server",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node build/app.js",
"start:prod": "node build/app.js",
"tsc": "tsc",
"build": "tsc",
"dev": "tsnd --respawn ./src/app.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sridhar-sp/draw-server.git"
},
"keywords": [],
"author": "sridhar-sp",
"license": "ISC",
"bugs": {
"url": "https://github.com/sridhar-sp/draw-server/issues"
},
"homepage": "https://github.com/sridhar-sp/draw-server#readme",
"dependencies": {
"@types/amqplib": "^0.5.17",
"@types/express": "^4.17.11",
"@types/mongodb": "^3.6.12",
"@types/randombytes": "^2.0.0",
"@types/redis": "^2.8.28",
"@types/socket.io": "^2.1.13",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"amqplib": "^0.6.0",
"body-parser": "^1.19.0",
"crypto-js": "^4.0.0",
"crypto-random-string": "^3.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase-admin": "^9.7.0",
"install": "^0.13.0",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.6",
"npm": "^6.14.13",
"randombytes": "^2.1.0",
"redis": "^3.1.2",
"socket.io": "^2.4.1",
"swagger-ui-express": "^4.1.6",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"ts-node-dev": "^1.1.6"
}
}