-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 932 Bytes
/
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
{
"name": "koa-skeleton",
"description": "",
"version": "1.0.0",
"homepage": "http://github.com/dnode/koa-skeleton",
"license": "MIT",
"private": true,
"readmeFilename": "README.md",
"main": "dest/app.js",
"scripts": {
"postinstall": "babel src -d dest",
"start": "dthrong",
"develop": "babel src -d dest && node -r dotenv/config dest/app.js"
},
"dependencies": {
"babel-cli": "^6.7.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.7",
"babel-preset-koa": "^1.0.0",
"dkoa": "^1.0.0",
"dkoa-headers": "^1.0.0",
"dkoa-http-auth": "^1.0.0",
"dthrong": "^2.6.0",
"koa-router": "^7.0.1"
},
"devDependencies": {
"dotenv": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dnode/koa-skeleton.git"
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
],
"presets": [
"koa"
]
}
}