-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 995 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 995 Bytes
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
{
"name": "meshido-backend",
"version": "1.0.0",
"license": "UNLICENSED",
"private": true,
"scripts": {
"start": "node src/api/bin/www",
"start-dev": "NODE_ENV='development' MONGO_URI='mongodb://localhost:27017/meshido' TZ='Asia/Tokyo' node-dev src/api/bin/www",
"start-dev-win": "set NODE_ENV=development&& set MONGO_URI=mongodb://localhost:27017/meshido&& set TZ=Asia/Tokyo&& node-dev src/api/bin/www",
"gulp": "gulp",
"lint": "gulp lint",
"init-db": "node ./tools/dbInit.js"
},
"dependencies": {
"bluebird": "^3.0.6",
"body-parser": "~1.13.2",
"debug": "~2.2.0",
"express": "~4.13.1",
"kerberos": "~0.0.17",
"moment": "^2.10.6",
"mongodb": "~2.0.50",
"mongoskin": "~2.0.3",
"morgan": "~1.6.1",
"node-dev": "^2.7.1",
"rand-token": "^0.2.1",
"sendgrid": "^2.0.0",
"validator": "^4.4.0"
},
"devDependencies": {
"eslint-config-xo": "^0.8.0",
"gulp": "^3.9.0",
"gulp-eslint": "^1.1.1"
}
}