forked from benawad/dogehouse
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "shawarma",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "tsc -w",
"start": "node dist/index.js",
"build": "tsc",
"dev": "cross-env DEBUG=shawarma:* nodemon dist/index.js",
"dev2": "cross-env QUEUE_ID=1 DEBUG=shawarma:* nodemon dist/index.js",
"dev:ts": "cross-env DEBUG=shawarma:* ts-node src",
"dev2:ts": "cross-env QUEUE_ID=1 DEBUG=shawarma:* ts-node src"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "^6.3.3",
"amqplib": "^0.7.1",
"cors": "^2.8.5",
"debug": "^4.3.2",
"dotenv": "^8.2.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mediasoup": "^3.7.2",
"ws": "^7.4.2"
},
"devDependencies": {
"@types/amqplib": "^0.5.17",
"@types/cors": "^2.8.9",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.21",
"@types/pino": "^6.3.5",
"@types/protoo-server": "^4.0.1",
"@types/ws": "^7.4.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.7",
"ts-node": "9.1.1",
"typescript": "^4.1.3"
}
}