-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 987 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
38
39
40
41
{
"name": "hotspot",
"version": "1.0.0",
"description": "A website for locating & hosting events.",
"main": "index.js",
"scripts": {
"start": "node .",
"watch": "nodemon .",
"heroku-postbuild": "run-s migrate seed:run",
"migrate:make": "knex migrate:make",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed:make": "knex seed:make",
"seed:run": "knex seed:run"
},
"engines": {
"node": "6.9.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ansonhwo/hotspot.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ansonhwo/hotspot/issues"
},
"homepage": "https://github.com/ansonhwo/hotspot#readme",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"knex": "^0.12.6",
"pg": "^6.1.2",
"vue": "^2.1.8"
},
"devDependencies": {
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.1"
}
}