-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 790 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 790 Bytes
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": "backend-challange",
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "node index.js",
"db:init": "knex migrate:latest",
"db:reset": "knex migrate:rollback && knex migrate:latest",
"db:seed": "knex seed:run"
},
"dependencies": {
"knex": "^0.19.4",
"koa": "^2.8.1",
"koa-bodyparser": "^4.2.1",
"koa-jwt": "^3.6.0",
"koa-qs": "^2.0.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"objection": "1.6.9",
"sqlite3": "^4.1.0",
"validate.js": "^0.12.0"
},
"devDependencies": {
"ajv": "^6.10.2",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"chai-json-schema-ajv": "^5.0.0",
"eslint": "^6.4.0",
"mocha": "^5.1.1",
"nyc": "^14.1.1"
}
}