-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
54
55
56
57
58
59
60
61
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"name": "jobhound",
"version": "0.0.1",
"description": "What am I about?",
"main": "server.js",
"scripts": {
"start": "node server.js",
"export-db-env": "export `sed -n '/DB_FILE/p' .env`",
"migrate-latest": "npm run export-db-env && knex --knexfile=./db/knexfile.js migrate:latest"
},
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"bookshelf": "^0.10.0",
"bookshelf-modelbase": "^2.10.3",
"cheerio": "*",
"cookie-parser": "^1.4.3",
"cors": "^2.7.1",
"csurf": "^1.9.0",
"date-fns": "^1.29.0",
"debug": "^2.2.0",
"dotenv": "^4.0.0",
"express": "^5.0.0-alpha.2",
"express-handlebars": "^3.0.0",
"helmet": "^2.1.2",
"knex": "^0.11.10",
"method-override": "^2.3.6",
"morgan": "^1.7.0",
"request": "*",
"request-promise": "^4.1.0",
"serve-favicon": "^2.3.0",
"shelljs": "^0.8.1",
"sqlite3": "^3.1.13",
"winston": "^2.2.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.1.0",
"nodemon": "*",
"supertest": "^3.0.0"
},
"engines": {
"node": "8.1.4"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"node",
"express",
"knex",
"bookshelf",
"cheerio"
],
"license": "MIT"
}