-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
{
"name": "koa-start",
"version": "0.0.1",
"author": "alsmile",
"scripts": {
"start": "nodemon --watch src --watch view scripts/development.js",
"prod": "npm run clean && node scripts/production.js",
"debug": "npm run clean && node scripts/debug.js",
"test": "mocha --compilers js:babel-core/register",
"build": "npm test && npm run clean && npm run compile",
"compile": "babel src/ --out-dir compiled/ --retain-lines --source-maps",
"clean": "npm cache clean && npm run rimraf -- compiled ",
"rimraf": "rimraf"
},
"engines": {
"node": ">= 4"
},
"dependencies": {
"xtemplate": "^4.6.0",
"xtpl": "^3.3.0",
"ejs": "^2.4.1",
"koa": "^2.2.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",
"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",
"debug": "^2.2.0",
"nodemon": "~1.11.0"
},
"devDependencies": {
"rimraf": "~2.5.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",
"node-dev":"*"
},
"repository": {
"type": "git",
"url": ""
},
"license": "MIT"
}