-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.29 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "node-api",
"version": "1.0.0",
"description": "App description",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test nyc --reporter=text --reporter=html mocha --require babel-core/register --require \"src/test/prepare\" \"src/test/**/**/*.test.js\" --exit --timeout 20000 --recursive",
"build": "rm -rf \"./dist\" && babel src -s -D -d dist --presets env,stage-0",
"dev": "cross-env NODE_ENV=development concurrently \"nodemon \"src/bootstrap/start.js\"\" ",
"test:unit": "NODE_ENV=test mocha --require babel-core/register \"src/test/unit/**/**/*.test.js\" --exit --timeout 20000 --recursive",
"test:integration": "NODE_ENV=test mocha --require babel-core/register --require \"src/test/prepare\" \"src/test/integration/**/**/*.test.js\" --exit --timeout 20000 --recursive",
"lint": "node_modules/.bin/eslint \"./src/**/*.js\"",
"db:seed": "node \"dist/scripts/seedDB.js\"",
"prestart": "npm run build && npm run db:seed",
"start": "cross-env NODE_ENV=production pm2-runtime start ecosystem.config.js --env production",
"docs": "jsdoc src -r -d docs"
},
"repository": {
"type": "git",
"url": "https://github.com/georgeben/nodejs-starter.git"
},
"author": "George Benjamin",
"license": "ISC",
"bugs": {
"url": "https://github.com/georgeben/nodejs-starter.git"
},
"homepage": "https://github.com/georgeben/nodejs-starter.git",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@hapi/joi-date": "^2.0.1",
"amqplib": "^0.5.6",
"awilix": "^4.2.6",
"awilix-express": "^3.0.0",
"aws-sdk": "^2.716.0",
"axios": "^0.19.2",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv-extended": "^2.8.0",
"eslint-plugin-security": "^1.4.0",
"express": "^4.17.1",
"express-joi-validation": "^4.0.3",
"express-request-id": "^1.4.1",
"file-stream-rotator": "^0.5.7",
"fs-extra": "^9.0.1",
"helmet": "^3.23.1",
"http-status-codes": "^1.4.0",
"jsdoc": "^3.6.6",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"migrate": "^1.7.0",
"mkdirp": "^1.0.4",
"moment": "^2.27.0",
"mongoose": "^5.4.5",
"mongoose-beautiful-unique-validation": "^7.1.1",
"mongoose-paginate-v2": "^1.3.9",
"mongoose-slug-generator": "^1.0.4",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"pm2": "^4.2.1",
"regenerator-runtime": "^0.13.7",
"request": "^2.88.2",
"require-all": "^3.0.0",
"toobusy-js": "^0.5.1",
"winston": "^3.3.1",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "7.0.0",
"mocha-prepare": "^0.1.0",
"mongo-unit": "^2.0.1",
"node-cmd": "^3.0.0",
"nyc": "^15.1.0",
"supertest": "^4.0.2"
}
}