-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.69 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.69 KB
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
62
63
64
65
66
67
68
69
70
71
{
"name": "Copia",
"version": "0.0.1",
"config": {
"host": "copia.ngrok.com",
"stubVenmo": true,
"db": {
"uri": "mongodb://heroku_app22242686:do2856rbauaa0nlb1epfqgj61o@ds033569.mongolab.com:33569/heroku_app22242686",
"options": {
"keepAlive": 1
}
},
"port": 3000,
"venmo": {
"authUrl": "https://api.venmo.com/v1/oauth/authorize",
"redirectUrl": "https://www.loanfish.com/auth",
"client_id": 1608,
"client_secret": "TBD",
"response_type": "code",
"state": "TBD",
"scope": [
"make_payment"
],
"access": [
"feed",
"profile",
"email",
"phone",
"balance",
"friends"
]
},
"debug": true,
"debug_fields": {
"enable_auth": true
}
},
"dependencies": {
"express": "~3.4.8",
"mongoose": "~3.8.7",
"bower": "~1.2.8",
"lodash": "~2.4.1",
"request": "~2.33.0",
"mongodb": "~1.3.23",
"grunt": "~0.4.2",
"grunt-env": "~0.4.1",
"grunt-nodemon": "~0.2.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.2.2",
"node-uuid": "~1.4.1",
"bcrypt": "~0.7.7"
},
"devDependencies": {
"mocha": "~1.17.1",
"should": "~3.1.3",
"supertest": "~0.9.0",
"grunt-nodemon": "~0.2.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-concurrent": "~0.4.3",
"grunt-env": "~0.4.1",
"grunt-mocha-test": "~0.9.3",
"debug": "^0.7.4"
},
"scripts": {
"postinstall": "node node_modules/bower/bin/bower install"
}
}