-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.01 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.01 KB
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
{
"name": "knex-node",
"version": "1.0.0",
"description": "1. Introduction - What is knex? - Setup and configuration - Write some code - Database Options 2. Building queries - Query builder in detail - Quick fire demos - Object graphs / eager loading 3. Schema, migration and seeding - Schema building - Knex cli - Migrations - Seeding 4. Real world data access - Write data access code",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamalpandey2012/knex-node.git"
},
"author": "kamal@konfinity.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/kamalpandey2012/knex-node/issues"
},
"homepage": "https://github.com/kamalpandey2012/knex-node#readme",
"dependencies": {
"bluebird": "^3.5.1",
"knex": "^0.13.0",
"pg": "^7.3.0",
"prettyjson": "^1.2.1",
"sqlite3": "^3.1.13",
"treeize": "^2.1.2"
}
}