-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.39 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
{
"name": "event-pad-api",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node ./bin/www.js",
"swagger-edit": "swagger project edit",
"lint": "eslint . --ext .js",
"dev": "DEBUG=event-api nodemon ./bin/www.js --exec 'npm run lint && node'",
"debug": "DEBUG=event-api nodemon --debug ./bin/www.js --exec 'npm run lint && node'",
"test": "npm run test-unit && npm run test-integration",
"test-unit": "npm run lint && ./node_modules/.bin/mocha --require ./test/globals.js test/unit/*.test.js",
"test-integration": "npm run lint && ./node_modules/.bin/mocha --require ./test/globals.js test/integration/*.test.js"
},
"dependencies": {
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.15.5",
"morgan": "~1.9.0",
"mysql2": "^1.5.1",
"sequelize": "^4.23.0",
"sequelize-cli": "^3.1.0",
"slug": "^0.9.1",
"swagger-express-mw": "^0.7.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"supertest": "^3.0.0"
},
"nodemonConfig": {
"ignore": [
"docs/*"
]
}
}