-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
{
"name": "node-app-boilerplate",
"version": "1.0.0",
"description": "A boilterplate application for nodejs with different re-usable components",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/pm2 start ./bin/www",
"stop": "./node_modules/.bin/pm2 stop www",
"lint": "./node_modules/.bin/eslint .",
"newman": "./node_modules/.bin/newman --environment ./node-app-bp-postman-env.json run ./node-app-bp-postman-coll.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sudhanshu-chauhan/node-app-boilerplate.git"
},
"keywords": [
"boilerplate",
"node",
"docker"
],
"author": "minimalcrap",
"license": "ISC",
"bugs": {
"url": "https://github.com/sudhanshu-chauhan/node-app-boilerplate/issues"
},
"homepage": "https://github.com/sudhanshu-chauhan/node-app-boilerplate#readme",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"convict": "^6.0.0",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"mocha": "^7.2.0",
"mongoose": "^5.7.5",
"multer": "^1.4.1",
"newman": "^5.1.2",
"nock": "^10.0.6",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pm2": "^4.4.0",
"sinon": "^7.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.1"
}
}