forked from bioball/ParkSwap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 877 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
{
"name": "ParkSwap",
"version": "1.1.0",
"engines": {
"node": "0.10.21"
},
"private": true,
"scripts": {
"start": "node app/main.js",
"test": "mocha $(find spec -name '*js')",
"postinstall": "echo \"{}\" > app/db/riderList.json",
"migrate": "node app/db/schema.js"
},
"dependencies": {
"express": "3.4.7",
"jade": "*",
"knex": "~0.5.2",
"bookshelf": "~0.6.2",
"passport": "~0.1.17",
"passport-facebook": "~1.0.2",
"twilio": "~1.5.0",
"q": "~0.9.7",
"pg": "~2.11.0"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-nodemon": "~0.1.2",
"grunt-node-inspector": "~0.1.2",
"grunt-mocha-test": "~0.8.1",
"grunt-concurrent": "~0.4.2",
"chai": "~1.8.1",
"sqlite3": "~2.1.19",
"request": "2.30.0",
"grunt-contrib-sass": "~0.6.0",
"grunt-contrib-watch": "~0.5.3"
}
}