-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.16.1",
"@types/jwt-simple": "^0.5.33",
"@types/node": "^12.0.2",
"@types/passport": "^1.0.0",
"@types/passport-jwt": "^3.0.1",
"nodemon": "^1.19.1",
"ts-node": "^8.2.0",
"typescript": "^3.4.5",
"vinyl-fs": "^3.0.3"
},
"dependencies": {
"@google-cloud/firestore": "^2.1.0",
"@types/shortid": "0.0.29",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-validator": "^2.20.8",
"jwt-simple": "^0.5.6",
"moment": "^2.24.0",
"passport": "^0.4.0",
"passport-jwt": "^2.2.1",
"shortid": "^2.2.14"
}
}