-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.41 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
{
"name": "schedulecture",
"version": "1.0.0",
"description": "Link to API DOCS",
"main": "server.js",
"dependencies": {
"body-parser": "^1.18.2",
"bower": "^1.8.2",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"express": "^4.16.2",
"newrelic": "^2.4.2",
"parse-database-url": "^0.3.0",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-oneauth": "^1.0.5",
"pg": "^6.4.2",
"pg-hstore": "^2.3.2",
"raven": "^2.3.0",
"sequelize": "^4.23.1",
"uid2": "0.0.3"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"start.dev": "SCHEDULECTURE_ENV=localhost node server.js",
"apidoc": "apidoc -i routes/ -o docs/",
"postinstall": "cd public_html ; ./../node_modules/.bin/bower install",
"db.recreate": "SCHEDULECTURE_FORCE_DB_RECREATE=true DEBUG=* node db/scripts/drop_create.js",
"db.seedfill": "SCHEDULECTURE_ENV=localhost SCHEDULECTURE_FORCE_DB_RECREATE=true node db/scripts/seed_fill.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coding-blocks/schedulecture.git"
},
"engines": {
"node": "8.8.x",
"npm": "5.4.x"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/coding-blocks/schedulecture/issues"
},
"homepage": "https://github.com/coding-blocks/schedulecture#readme"
}