-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "eko-koa",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=8.0.0"
},
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development nodemon routes.js",
"production": "NODE_ENV=production node routes.js",
"testing": "NODE_ENV=testing node routes.js",
"prettier": "prettier --no-config --write '**/*.js'",
"knex": "knex",
"pm2": "pm2",
"test": "NODE_ENV=unit-tests ava --serial",
"test-watch": "NODE_ENV=unit-tests ava --serial --watch",
"coverage": "NODE_ENV=unit-tests nyc ava --serial"
},
"author": "",
"license": "MIT",
"dependencies": {
"ava": "^0.25.0",
"cron": "^1.3.0",
"knex": "^0.14.2",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-compress": "^2.0.0",
"koa-conditional-get": "^2.0.0",
"koa-ejs": "^4.1.0",
"koa-etag": "^3.0.0",
"koa-flash-simple": "0.0.3",
"koa-helmet": "^3.3.0",
"koa-i18n": "^2.1.0",
"koa-locale": "^1.3.0",
"koa-logger": "^3.1.0",
"koa-router": "^7.4.0",
"koa-session": "^5.8.1",
"koa-static": "^4.0.2",
"mariasql": "^0.2.6",
"mysql": "^2.15.0",
"mysql2": "^1.5.2",
"nodemon": "^1.14.11",
"nyc": "^11.4.1",
"objection": "^1.0.0",
"pg": "^7.4.1",
"pm2": "^2.9.3",
"pretty-error": "^2.1.1",
"sqlite3": "^3.1.13",
"superkoa": "^1.0.3",
"youch": "^2.0.7"
},
"devDependencies": {
"prettier": "1.10.2"
}
}