-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 955 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
{
"name": "like-uber-but-for-sam",
"version": "0.0.0",
"description": "Order an Uber. By text. If you're Sam.",
"author": "Sam Sweeney",
"private": true,
"scripts": {
"start": "node ./bin/www",
"eslint-full": "eslint app.js routes lib test",
"test-mocha": "mocha test/*.js test/**/*.js",
"test": "npm run eslint-full && npm run test-mocha"
},
"dependencies": {
"bluebird": "^3.0.5",
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"dotenv": "^1.2.0",
"express": "~4.13.1",
"jade": "~1.11.0",
"morgan": "~1.6.1",
"pg": "4.4.1",
"qs": "^5.1.0",
"request": "^2.61.0",
"request-promise": "^0.4.3",
"serve-favicon": "~2.3.0",
"twilio": "2.3.0"
},
"devDependencies": {
"chai": "^3.2.0",
"eslint": "^1.3.1",
"mocha": "^2.3.2",
"nock": "^2.10.0",
"proxyquire": "^1.7.2",
"sinon": "^1.16.1",
"supertest": "^1.1.0"
}
}