-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 944 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
{
"name": "grapevineanalytics",
"version": "1.0.0",
"description": "A website for website owners who want to view user traffic information.",
"main": "main.js",
"scripts": {
"start": "node server.js",
"watch": "nodemon server.js",
"drop": "psql -d grapevineanalytics -f create-tables.sql",
"populate": "psql -d grapevineanalytics -f populate-data.sql"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aidanbdh/grapevineanalytics.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aidanbdh/grapevineanalytics/issues"
},
"homepage": "https://github.com/aidanbdh/grapevineanalytics#readme",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"knex": "^0.12.6",
"moment": "^2.17.1",
"pg": "^6.1.2"
},
"devDependencies": {
"nodemon": "^1.11.0"
},
"engines": {
"node": "6.9.4"
}
}