-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "tennishelsinki",
"version": "1.0.0",
"description": "Lists tennis courts of helsinki in one view",
"main": "server.js",
"scripts": {
"test": "mocha --exit",
"start": "NODE_ENV=production forever ./server.js --tls-min-v1.0",
"dev": "NODE_ENV=test forever -w ./server.js --watchIgnore -- --tls-min-v1.0",
"mongo": "mongod --fork --logpath mongo.log",
"update-prices": "scripts/fetchPrices.js",
"update-locations": "scripts/updateLocations.js",
"update-history": "scripts/fetchHistory.js"
},
"repository": {
"type": "git",
"url": "https://github.com/eeroan/tennishelsinki.git"
},
"author": "eea@iki.fi",
"license": "ISC",
"bugs": {
"url": "https://github.com/eeroan/tennishelsinki/issues"
},
"homepage": "https://github.com/eeroan/tennishelsinki",
"dependencies": {
"baconjs": "^3.0.12",
"chartist": "^0.11.4",
"compression": "^1.7.4",
"dateutils": "^0.4.0",
"express": "^4.17.1",
"express-babelify-middleware": "^0.2.1",
"fastclick": "^1.0.6",
"forever": "^2.0.0",
"lodash": "^4.17.15",
"mongodb": "^3.6.1",
"nouislider": "^14.1.1",
"request": "^2.88.0",
"request-debug": "^0.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"flat": "^5.0.0",
"mocha": "^6.2.2",
"supervisor": "^0.12.0",
"zombie": "^6.1.4"
},
"engines": {
"node": "12.14.0",
"npm": "6.13.4"
}
}