-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.11 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "nodejs_express_boilerplate",
"version": "2.3.0",
"description": "Boilerplate for a services based backend application in NodeJS.",
"keywords": [
"NodeJS",
"boilerplate",
"backend boilerplate"
],
"private": true,
"main": "./dist/webServer/index.js",
"scripts": {
"test": "mocha",
"build": "npm run tsc",
"tsc": "tsc -p ./tsconfig.json",
"lint": "tslint -c ./tslint.json -p ./tsconfig.json",
"watch": "npm run tsc -- -w",
"migrate": "migrate-mongo -f /src/db/migrate-mongo-config.js",
"prestart": "npm run build",
"start": "node ./dist/webServer/index.js",
"start-watch": "nodemon -L --inspect=0.0.0.0:9229 ./dist/webServer/index.js"
},
"homepage": "https://github.com/PedroHenriques/NodeJS_Backend_Boilerplate",
"bugs": "https://github.com/PedroHenriques/NodeJS_Backend_Boilerplate/issues",
"author": "Pedro Henriques <pedro@pedrojhenriques.com> (http://pedrojhenriques.com)",
"license": "MIT",
"dependencies": {
"amqplib": "^0.5.3",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.3",
"express": "^4.16.4",
"migrate-mongo": "^4.1.2",
"mongodb": "^3.1.10",
"nodemailer": "^4.7.0",
"nodemailer-smtp-transport": "^2.7.4",
"redis": "^2.8.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"uuid": "^3.3.2",
"validatorjs": "^3.15.1",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/amqplib": "^0.5.9",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.16.0",
"@types/mongodb": "^3.1.17",
"@types/node": "^10.12.18",
"@types/nodemailer": "^4.6.5",
"@types/nodemailer-smtp-transport": "^2.7.4",
"@types/redis": "^2.8.9",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^3.4.4",
"@types/validatorjs": "^3.7.1",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"node-fetch": "^2.3.0",
"nodemon": "^1.18.9",
"proxyquire": "^2.1.0",
"sinon": "^7.2.2",
"tslint": "^5.12.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.2.2"
},
"engines": {
"node": ">=8"
}
}