-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 959 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
{
"name": "koa-starter-kit",
"version": "1.0.0",
"description": "Koa Starter Kit is a basic setup template for the quick starting with Koa2.",
"main": "src/index.js",
"scripts": {
"start": "nodemon src/index.js --exec babel-node",
"build": "babel src -d dist",
"serve": "node dist/index.js",
"test": "mocha --compilers js:babel-register"
},
"author": "Tua Hoang Nguyen <hoangtua.vn@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.11.6",
"babel-runtime": "^6.25.0",
"mocha": "^3.0.1",
"nodemon": "^1.10.0"
},
"dependencies": {
"bcrypt": "^3.0.8",
"date-fns": "^1.28.5",
"faker": "^4.1.0",
"jsonwebtoken": "^7.4.1",
"kcors": "^2.2.1",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-compose": "^4.0.0",
"koa-router": "^7.2.1"
}
}