-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 845 Bytes
/
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
{
"name": "eCallerEpidemiaBackend",
"version": "1.0.0",
"description": "ecaller Epidemia Backend",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node ./lib/server.ts",
"start": "nodemon ./dist/server.js",
"prod": "npm run build && npm run start"
},
"author": "[email protected]",
"license": "GPL-3.0",
"dependencies": {
"@types/express": "^4.17.3",
"@types/node": "^13.9.8",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.2",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.18.2",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.24"
},
"devDependencies": {
"typescript": "3.8.3",
"ts-node": "8.8.1"
}
}