-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 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
43
44
{
"name": "nodejs-remix",
"version": "1.0.0",
"description": "NodeJS Remix",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/server.ts",
"build": "tsc --project ./",
"generateMigration": "ts-node ./node_modules/.bin/typeorm migration:generate -n Initialize"
},
"author": "Slarity",
"license": "ISC",
"dependencies": {
"@types/socket.io": "^2.1.13",
"body-parser": "^1.19.0",
"bull-board": "^2.1.2",
"bullmq": "^1.28.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status": "^1.5.0",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"socket-io": "^1.0.0",
"socket.io": "^4.0.1",
"twilio": "^3.62.0",
"typedi": "^0.10.0",
"typeorm": "^0.2.32",
"typeorm-typedi-extensions": "^0.4.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^14.14.41",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}