-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 957 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
{
"name": "bookshelf-json-example",
"version": "1.0.0",
"description": "Example of DB with JSON object inside a column",
"main": "index.js",
"scripts": {
"prestart": "npm run migrate:latest",
"start": "node index.js",
"migrate:make": "knex migrate:make",
"migrate:latest": "knex migrate:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/bookshelf-json-example.git"
},
"keywords": [
"json",
"jsonb",
"database",
"example",
"bookshelf",
"bookshelfjs"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/bookshelf-json-example/issues"
},
"homepage": "https://github.com/bahmutov/bookshelf-json-example#readme",
"dependencies": {
"bluebird": "^3.5.0",
"bookshelf": "^0.10.4",
"bookshelf-json-columns": "^2.1.1",
"knex": "^0.13.0",
"sqlite3": "^3.1.9"
}
}