forked from RideOrDieapp/RideOrDie
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 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
37
38
39
40
41
{
"name": "BikeSafety",
"version": "0.0.1",
"author": "Sean Rycek, Dalton Shehan, Taylor Griffin, Ryan Adams",
"description": "An application to help bike riders analyze paths and find those that are safer than others",
"contributors": [
{
"name": "Sean Rycek",
"email": "[email protected]"
},
{
"name": "Dalton Shehan",
"email": "[email protected]"
},
{
"name": "Taylor Griffin",
"email": "[email protected]"
},
{
"name": "Ryan Adams",
"email": "[email protected]"
}
],
"main": "./server.js",
"noAnalyze": true,
"license": "Apache",
"engines": {
"node": ">=0.6.14"
},
"scripts": {
"start": "npm install && ./node_modules/.bin/bower install && node ./server.js"
},
"dependencies": {
"bower": "^1.3.12",
"ejs": "~2.2.4",
"express": "~3.19.2",
"firebase": "~2.2.0",
"jade": "~1.9.2",
"nconf": "~0.7.1"
}
}