-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.7 KB
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
{
"name": "koa2-boilerplate",
"version": "1.0.0",
"description": "Minimal koa v2 boilerplate.",
"main": "index.js",
"scripts": {
"test": "make test",
"start": "NODE_ENV=development ./node_modules/.bin/nodemon --harmony index.js",
"prod": "npm run build && NODE_ENV=production node --harmony index.js",
"build": "NODE_ENV=production webpack --config webpack.config.js --separate-stylesheet -p --progress --profile --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geekplux/koa2-boilerplate.git"
},
"keywords": [
"koa",
"koa2",
"babel",
"es2015"
],
"author": "GeekPlux",
"license": "MIT",
"bugs": {
"url": "https://github.com/geekplux/koa2-boilerplate/issues"
},
"homepage": "https://github.com/geekplux/koa2-boilerplate#readme",
"dependencies": {
"bcrypt-as-promised": "^1.1.0",
"koa": "^2.0.0-alpha.3",
"koa-bodyparser": "^3.0",
"koa-compress": "^1.0.8",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-generic-session": "^1.10.1",
"koa-helmet": "^1.0.0",
"koa-logger": "^2.0.0",
"koa-mount": "^1.3.0",
"koa-passport": "^2.0",
"koa-router": "^7.0.1",
"koa-static": "^2.0.0",
"lodash": "^4.3.0",
"mongodb": "^2.1.7",
"mongoose": "^4.4.2",
"mongoose-validator": "^1.2.4",
"passport-facebook": "^2.0",
"passport-google-auth": "^1.0",
"passport-local": "^1.0",
"passport-twitter": "^1.0",
"path": "^0.12.7"
},
"devDependencies": {
"babel-preset-es2015-node5": "^1.1.2",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"mocha": "^2.3.4",
"nodemon": "^1.8.1",
"should": "^8.2.0",
"supertest": "^1.1.0"
}
}