-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "nodejs-sequelize-swagger-seed",
"version": "0.0.1",
"description": "NodeJS Swagger",
"author": {
"name": "Nick Chisiu",
"email": "[email protected]"
},
"engines": {
"node": ">=6.x"
},
"dependencies": {
"JSONStream": "^1.1.1",
"app-root-path": "^2.0.1",
"bluebird": "^3.4.6",
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"express": "^4.13.4",
"js-yaml": "^3.6.1",
"mocha": "^3.1.0",
"mysql": "^2.11.1",
"sequelize": "^3.24.3",
"swagger-jsdoc": "^1.3.0",
"walk-sync": "^0.3.1"
},
"devDependencies": {
"cross-env": "^1.0.8",
"eslint": "3.3.1",
"eslint-config-airbnb": "10.0.1",
"eslint-config-airbnb-base": "5.0.2",
"eslint-plugin-import": "1.13.0",
"eslint-plugin-jsx-a11y": "2.1.0",
"eslint-plugin-react": "6.1.1",
"jsinspect": "^0.8.0",
"nodemon": "^1.9.2"
},
"scripts": {
"start": "./scripts/start.sh",
"test": "mocha ./test/runner.js",
"eslint": "eslint .",
"jsinspect": "jsinspect -t 30 -i ./app/ ./lib/"
}
}