-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "koa2-startkit",
"version": "0.2.0",
"author": "wssgcg1213",
"scripts": {
"start": "node bin/development.js",
"production": "node bin/production.js",
"debug": "npm run clean && node bin/debug",
"build": "npm test && npm run clean && npm run compile",
"compile": "babel src/ --out-dir app/ --retain-lines --source-maps",
"clean": "rm -rf app/",
"test": "mocha -u bdd --compilers js:babel-core/register",
"dev": "npm start"
},
"engines": {
"node": ">= 4"
},
"dependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-plugin-add-module-exports": "^0.1.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-3": "^6.5.0",
"babel-runtime": "^6.6.1",
"co": "^4.6.0",
"debug": "^2.2.0",
"ejs": "^2.4.1",
"koa": "^2.0.0",
"koa-bodyparser": "^2.0.1",
"koa-convert": "^1.2.0",
"koa-json": "^1.1.1",
"koa-logger": "^1.3.0",
"koa-onerror": "^3.0.1",
"koa-router": "^7.0.0",
"koa-static-plus": "^0.1.1",
"koa-views": "^5.0.1",
"lodash": "^4.11.1"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"chokidar": "^1.5.1",
"colors": "^1.1.2",
"eslint": "^2.11.1",
"eslint-config-standard": "^5.2.0",
"eslint-plugin-promise": "^1.3.1",
"eslint-plugin-standard": "^1.3.2",
"mocha": "^2.4.5",
"should": "^8.3.0",
"supertest": "^1.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/17koa/koa2-startkit.git"
},
"license": "MIT"
}