forked from davidalee/bestrida
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.83 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
62
63
64
65
66
67
68
69
70
71
{
"name": "bestrida",
"version": "0.0.1",
"description": "A Strava challenge app",
"main": "dist/app/server.js",
"private": true,
"scripts": {
"start": "node dist/app/server.js",
"dev": "nodemon dist/app/server.js",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bestrida/bestrida.git"
},
"keywords": [
"bestrida",
"strava",
"challenge",
"segment"
],
"author": "Justin Zimmerman, Shan Batla, A.J. Mullins, David Lee",
"bugs": {
"url": "https://github.com/Bestrida/bestrida/issues"
},
"homepage": "https://github.com/Bestrida/bestrida#readme",
"dependencies": {
"bluebird": "^3.0.6",
"body-parser": "^1.14.1",
"casperjs": "^1.1.0-beta3",
"express": "^4.13.3",
"express-jwt": "^3.3.0",
"express-session": "^1.12.1",
"jsonwebtoken": "^5.4.1",
"method-override": "^2.3.5",
"mongodb": "^2.1.0",
"mongoose": "^4.2.9",
"mongoose-findorcreate": "^0.1.2",
"morgan": "^1.6.1",
"passport": "^0.3.2",
"passport-strava-oauth2": "^0.1.3",
"strava-v3": "^1.8.1"
},
"engines": {
"node": "0.12.x"
},
"devDependencies": {
"chai": "^3.4.1",
"grunt": "^0.4.5",
"grunt-casperjs": "^2.1.0",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-express-server": "^0.5.1",
"grunt-karma": "^0.12.1",
"grunt-mocha": "^0.4.15",
"grunt-nodemon": "^0.4.1",
"istanbul": "^0.4.1",
"karma": "^0.13.15",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.1",
"karma-sinon": "^1.0.4",
"mocha": "^2.3.4",
"sinon": "^1.17.2"
}
}