-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
47 lines (47 loc) · 1.42 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
46
47
{
"name": "node-express-mongo-passport-jwt-typescript",
"version": "1.0.0",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run tslint",
"serve": "node dist/server.js",
"watch-node": "sleep 5 && nodemon dist/server.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"dependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.1",
"@types/mongoose": "^5.3.17",
"@types/node": "^11.9.4",
"@types/passport": "^1.0.0",
"@types/passport-jwt": "^3.0.1",
"@types/passport-local": "^1.0.33",
"@types/uuid": "^3.4.4",
"bcrypt-nodejs": "0.0.3",
"compression": "^1.7.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"mongoose": "^5.13.20",
"nodemon": "^2.0.20",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"typescript": "^3.3.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"concurrently": "^7.6.0",
"tslint": "^5.12.1"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jerrychong25/node-express-mongo-passport-jwt-typescript.git"
},
"license": "MIT"
}