-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.18 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
{
"name": "bookshelf_demo",
"version": "0.0.1",
"description": "example REST API using Typescript, Koa, Bookshelf, Knex, Postgresql",
"main": "build/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/typescript/bin/tsc --allowJs",
"compile": "./node_modules/typescript/bin/tsc --allowJs && node build/app.js",
"start": "nodemon -L --watch src -e ts --exec \"npm run compile\"",
"migrate": "knex migrate:latest",
"migrate:make": "knex migrate:make",
"migrate:rollback": "knex migrate:rollback",
"seed": "knex seed:run",
"seed:make": "knex seed:make"
},
"author": "Jared Chapiewsky",
"license": "MIT",
"repository": "https://github.com/jpchip/bookshelf_demo.git",
"dependencies": {
"bookshelf": "^0.10.2",
"bookshelf-api": "^1.7.0",
"knex": "^0.12.6",
"koa": "^1.2.4",
"koa-bodyparser": "^2.3.0",
"koa-router": "^5.4.0",
"pg": "^6.1.2",
"typings": "^2.1.0"
},
"devDependencies": {
"@types/bookshelf": "^0.8.34",
"@types/koa": "^2.0.37",
"@types/koa-router": "^7.0.21",
"@types/node": "^6.0.53",
"nodemon": "^1.11.0",
"typescript": "^2.1.4"
}
}