-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "bitballs",
"version": "0.4.1",
"description": "A basketball tournament app",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "node public/build.js",
"develop": "node index.js --develop",
"db-migrate": "db-migrate up",
"document": "documentjs -d",
"test": "npm run jshint && cd public/ && npm test",
"jshint": "jshint ./ --config .jshintrc",
"install": "node install.js && npm run db-migrate",
"deploy": "firebase deploy",
"deploy:ci": "firebase deploy --token \"$FIREBASE_TOKEN\""
},
"dependencies": {
"async": "^2.4.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.13.3",
"bookshelf": "^0.10.3",
"checkit": "^0.7.0",
"cookie-parser": "^1.4.1",
"db-migrate": "^0.9.26",
"ejs": "^2.3.1",
"express": "^4.15.3",
"express-session": "^1.11.3",
"knex": "^0.12.0",
"lodash": "^4.17.4",
"nodemailer": "^2.7.2",
"passport": "^0.2.2",
"passport-local": "^1.0.0",
"pg": "4.5.6"
},
"engines": {
"node": "6.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/donejs/bitballs.git"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT",
"devDependencies": {
"documentjs": "^0.4.4",
"donejs": "^3.0.0",
"donejs-cli": "^3.0.0",
"firebase-tools": "^6.0.1",
"jshint": "^2.9.1",
"maildev": "^0.12.2"
},
"urls": {
"prod": "https://bitballs.herokuapp.com/",
"dev": "http://localhost:5000/"
}
}