-
Notifications
You must be signed in to change notification settings - Fork 292
/
package.json
53 lines (53 loc) · 1.35 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "galvanize-bookshelf",
"version": "1.0.0",
"description": "Create a web application to manage your book collection",
"main": "server.js",
"scripts": {
"heroku-postbuild": "knex migrate:latest",
"knex": "knex",
"lint": "eslint --ignore-pattern public/js/vendor",
"nf": "nf start",
"start": "nodemon server.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gschool/galvanize-bookshelf.git"
},
"author": "Ian Smith <[email protected]>",
"contributors": [
"Ken McGrady <[email protected]>",
"Ryan Sobol <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gschool/galvanize-bookshelf/issues"
},
"homepage": "https://github.com/gschool/galvanize-bookshelf#readme",
"dependencies": {
"bcrypt": "1.0.2",
"body-parser": "^1.15.2",
"boom": "^3.2.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"humps": "^1.1.0",
"jsonwebtoken": "^7.1.9",
"knex": "^0.20.12",
"morgan": "^1.7.0",
"pg": "^6.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"dotenv": "^2.0.0",
"eslint": "^3.1.1",
"eslint-config-ryansobol": "^7.7.0",
"foreman": "^3.0.1",
"mocha": "^2.5.3",
"nodemon": "^1.10.0",
"supertest": "^1.2.0"
},
"engines": {
"node": "7.4.0"
}
}