-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 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
{
"name": "greedpatch-back",
"version": "1.0.0",
"description": "back end for greedpatch",
"main": "dist/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "PORT=4002 DEBUG=greedpatch-back* nodemon -w dist -e js dist/app.js",
"release": "PORT=4012 NODE_ENV=release pm2 start dist/app.js -i 0 --name greedpatch-back --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greedlab/greedpatch-back.git"
},
"keywords": [
"back",
"end",
"greedpatch",
"patch"
],
"author": "Bell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/greedlab/greedpatch-back/issues"
},
"homepage": "https://github.com/greedlab/greedpatch-back#readme",
"dependencies": {
"babel-polyfill": "^6.16.0",
"bcrypt": "^0.8.7",
"bluebird": "^3.4.6",
"debug": "^2.3.2",
"jsonwebtoken": "^7.1.9",
"koa": "^2.0.0-alpha.5",
"koa-bodyparser": "^3.2.0",
"koa-bunyan-logger": "^2.0.0-pre1",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-logger": "^2.0.0",
"koa-multer": "^1.0.0",
"koa-passport": "^2.2.2",
"koa-router": "^7.0.1",
"koa-static": "^3.0.0",
"mongoose": "^4.6.7",
"node-uuid": "^1.4.7",
"nodemailer": "^2.6.4",
"passport-local": "^1.0.0",
"redis": "^2.6.3"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-async-to-module-method": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.3.1",
"eslint-plugin-react": "^6.1.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-changed": "^1.3.2",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-watch": "^4.3.9",
"run-sequence": "^1.2.2"
}
}