forked from tian-dutoit/vexed-unicorns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 891 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
{
"name": "boilerplate-knex",
"version": "0.1.3",
"description": "Express boilerplate with Knex.js",
"main": "index.js",
"scripts": {
"knex": "knex",
"dev": "nodemon index",
"start": "node index",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-academy-challenges/boilerplate-knex.git"
},
"author": "EDA",
"license": "ISC",
"bugs": {
"url": "https://github.com/dev-academy-challenges/boilerplate-knex/issues"
},
"homepage": "https://github.com/dev-academy-challenges/boilerplate-knex#readme",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"knex": "^0.14.2",
"sqlite3": "^3.1.13"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.2",
"jest": "^22.1.4",
"nodemon": "^1.14.11",
"supertest": "^3.0.0"
}
}