-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "scaf-node",
"version": "0.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"up:migrations": "knex migrate:latest",
"down:migrations": "knex migrate:rollback",
"seed": "knex seed:run",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JrFarias/scaf-node.git"
},
"author": "Junior Farias",
"license": "MIT",
"bugs": {
"url": "https://github.com/JrFarias/scaf-node/issues"
},
"homepage": "https://github.com/JrFarias/scaf-node#readme",
"dependencies": {
"http-status-codes": "^1.3.0",
"knex": "^0.15.2",
"koa": "^2.5.3",
"koa-bodyparser": "^4.2.1",
"koa-helmet": "^4.0.0",
"koa-json": "^2.0.2",
"koa-router": "^7.4.0",
"sqlite3": "^4.0.2",
"yup": "^0.26.6"
},
"devDependencies": {
"jest": "^23.6.0",
"jest-plugin-context": "^2.9.0",
"mock-knex": "^0.4.2",
"nodemon": "^1.18.4"
},
"jest": {
"setupFiles": [
"jest-plugin-context/setup"
]
}
}