-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.91 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
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "node-express-sequelize-es2015",
"version": "1.0.0",
"description": "API server boilerplate using Node/Express/Sequelize",
"main": "index.js",
"scripts": {
"start": "better-npm-run start",
"dev": "better-npm-run dev",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "better-npm-run test",
"apidoc": "apidoc -i routes/ -o public/apidoc",
"deploy": "better-npm-run deploy"
},
"apidoc": {
"name": "fsm-engine-restful API - Documentation",
"template": {
"forceLanguage": "en"
}
},
"betterScripts": {
"dev": {
"command": "nodemon --exec babel-node index.js --ignore repository/",
"env": {
"NODE_ENV": "development",
"DEBUG": "engine core instance-log vantage instance"
}
},
"deploy": {
"command": "babel -d ./build ./index.js -s & babel -d ./build ./auth.js & babel -d ./build ./db.js & babel ./libs --out-dir ./build/libs & babel ./routes --out-dir ./build/routes & babel ./models --out-dir ./build/models",
"env": {
"NODE_ENV": "production"
}
},
"start": {
"command": "node build/index.js",
"env": {
"NODE_ENV": "production",
"DEBUG": "engine core instance-log vantage instance"
}
},
"test": {
"command": "mocha test/**/*.js",
"env": {
"NODE_ENV": "test"
}
}
},
"author": "Arnaud Valensi",
"dependencies": {
"apidoc": "^0.15.1",
"babel-cli": "^6.5.1",
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.5.2",
"bcrypt": "^1.0.2",
"bcrypt-nodejs": "0.0.3",
"better-npm-run": "0.0.5",
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"compression": "^1.6.1",
"consign": "^0.1.2",
"cors": "^2.8.4",
"debug": "^2.6.8",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.1",
"eslint-plugin-flow-vars": "^0.1.3",
"express": "^4.13.4",
"fsm-engine": "0.0.25",
"helmet": "^1.1.0",
"jwt-simple": "^0.4.1",
"mocha": "^2.4.5",
"morgan": "^1.6.1",
"mysql": "^2.13.0",
"mysql2": "^1.3.6",
"nodemon": "^1.8.1",
"passport": "^0.3.2",
"passport-jwt": "^2.0.0",
"pg": "^7.0.0",
"pg-hstore": "^2.3.2",
"sequelize": "^3.19.2",
"sqlite": "^2.8.0",
"sqlite3": "^3.1.8",
"supertest": "^1.2.0",
"tedious": "^2.0.0",
"vantage": "moraispgsi/vantage",
"winston": "^2.1.1"
},
"devDependencies": {
"apidoc": "^0.15.1",
"babel-cli": "^6.5.1",
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.5.2",
"better-npm-run": "0.0.5",
"chai": "^3.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.1",
"eslint-plugin-flow-vars": "^0.1.3",
"mocha": "^2.4.5",
"nodemon": "^1.8.1",
"sqlite": "^2.8.0",
"supertest": "^1.2.0"
}
}