-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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": "my-api",
"version": "1.0.0",
"description": "Creating my own express server structure for api development",
"main": "server.js",
"scripts": {
"babel-node": "babel-node --presets=env",
"start": "nodemon --exec npm run babel-node src/server.js",
"dev": "npm-run-all --parallel security-check start lint",
"security-check": "nsp check",
"mocha:test": "mocha --timeout 10000 --require babel-core/register \"tests/**/*.spec.js\"",
"test": "cross-env NODE_ENV=testing npm-run-all --parallel mocha:test",
"lint": "esw src tests --color",
"lint:fix": "esw src tests --fix",
"lint:watch": "npm run lint -- --watch"
},
"keywords": [
"express",
"node",
"api",
"js"
],
"author": "Onwuzor Victor",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"debug": "^3.1.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"lodash.merge": "^4.6.1",
"mongoose": "^5.1.4",
"morgan": "^1.9.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cross-env": "^5.2.0",
"eslint": "^5.0.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-watch": "^4.0.0",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"npm-run-all": "^4.1.3",
"nsp": "^3.2.1"
}
}