-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 991 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": "todo-api",
"version": "1.0.0",
"description": "Manage your todos",
"repository": {
"type": "git",
"url": "https://github.com/johncmunson/todo-api"
},
"engines": {
"node": "13.2.0"
},
"main": "index.js",
"author": "John Munson <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node index.js",
"create-migration": "knex migrate:make",
"migrate": "knex migrate:latest",
"create-seed": "knex seed:make",
"seed": "knex seed:run",
"test": "jest tests",
"test-unit": "jest tests/unit",
"test-integration": "jest tests/integration"
},
"devDependencies": {
"jest": "^25.1.0",
"jest-environment-node": "^25.1.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^5.0.0-alpha.7",
"knex": "^0.20.10",
"morgan": "^1.9.1",
"objection": "^2.1.3",
"objection-db-errors": "^1.1.2",
"sqlite3": "^4.1.1",
"supertest": "^4.0.2"
}
}