-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"dependencies": {
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/mongodb": "^3.1.14",
"@types/mongoose": "^5.3.1",
"@types/socket.io": "^2.1.0",
"aws-sdk": "^2.369.0",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cognitive-services": "^1.2.1",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"expo-server-sdk": "^3.0.1",
"express": "^4.16.4",
"express-fileupload": "^1.0.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.9",
"morgan": "^1.9.1",
"nodemailer": "^4.7.0",
"promise-retry": "^1.1.1",
"sleep-promise": "^8.0.1",
"socket.io": "^2.1.1",
"timeout-as-promise": "^1.0.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.6",
"uuid": "^3.3.2"
},
"scripts": {
"build": "tsc && npm run tslint",
"dev": "nodemon",
"start": "ts-node src/server.ts",
"prod": "npm run build && npm run start && npm run tslint",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"devDependencies": {
"nodemon": "^1.18.7",
"tslint": "^5.11.0"
},
"engines": {
"node": "^8 || ^10 || ^12"
}
}