forked from CloudBreadProject/CloudBread-NodeJS
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "cloudbread-core",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "NODE_ENV=production node ./bin/www",
"start:development": "NODE_ENV=development node ./bin/www",
"eslint": "eslint **/*.js",
"eslint:fix": "eslint -c .eslintrc --fix *.js **/*.js"
},
"dependencies": {
"azure-mobile-apps": "^4.0.1",
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"delay": "^2.0.0",
"express": "^4.16.2",
"jade": "~1.11.0",
"morgan": "~1.9.0",
"mysql": "^2.15.0",
"mysql2": "^1.4.2",
"promise": "^8.0.1",
"sequelize": "^4.19.0",
"sequelize-import": "^1.2.1",
"serve-favicon": "~2.4.5",
"tedious": "^2.1.1",
"express-status-monitor": "^1.0.0",
"express-validator": "^3.2.1",
"errorhandler": "^1.5.0"
},
"devDependencies": {
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.8.0"
},
"description": "CloudBread for NodeJS",
"main": "app.js",
"author": "kosslab-kr/CloudBread",
"license": "MIT"
}