-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.03 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
{
"name": "MYAPP",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/thierryskoda/MYAPP.git"
},
"keywords": [
"node",
"boilerplate",
"koa",
"mongoose",
"express"
],
"engines": {
"node": "8.1.4"
},
"scripts": {
"dev": "NODE_ENV=development ./node_modules/.bin/nodemon src --exec ./node_modules/.bin/babel-node",
"start": "./node_modules/.bin/babel-node src",
"deploy": "npm run prettier && git add . && git commit -m",
"push-prod": "heroku pipelines:promote -a staging-MYAPP",
"deploy-prod": "git push heroku master && heroku pipelines:promote -a staging-MYAPP",
"precommit": "skod-scripts precommit",
"test": "ava",
"lint": "skod-scripts lint",
"format": "skod-scripts format",
"validate": "skod-scripts validate"
},
"dependencies": {
"babel-core": "^6.22.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"compression": "^1.7.0",
"consolidate": "^0.14.5",
"cors": "^2.8.1",
"crypto": "^0.0.3",
"dotenv": "^2.0.0",
"errorhandler": "^1.5.0",
"express": "^4.15.4",
"express-jwt": "^5.3.0",
"express-session": "^1.15.5",
"fb": "^1.1.1",
"helmet": "^3.8.1",
"jsonwebtoken": "^8.0.1",
"kcors": "^2.2.1",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-cors": "^0.0.16",
"koa-helmet": "^3.2.0",
"koa-json-logger": "^1.0.2",
"koa-logger": "^3.0.1",
"koa-passport": "^4.0.0",
"koa-router": "^7.2.1",
"koa-session": "^5.5.0",
"kue": "^0.11.6",
"mixpanel": "^0.7.0",
"moment": "^2.16.0",
"mongoose": "^4.11.12",
"passport": "^0.4.0",
"redis": "^2.6.5",
"shortid": "^2.2.6"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-register": "^6.26.0",
"mongomem": "^0.1.9",
"nodemon": "^1.12.1",
"skod-scripts": "^0.3.0"
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
]
}
}