-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·47 lines (47 loc) · 1.1 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
{
"name": "CbbfService",
"version": "0.0.1",
"description": "Cambridge Beer Festival Web Service",
"main": "index.js",
"dependencies": {
"body-parser": "^1.8.1",
"cors": "^2.7.1",
"express": "^4.9.0",
"fast-crc32c": "^1.0.2",
"gcloud": "^0.36.0",
"generic-pool": "^2.4.2",
"morgan": "^1.3.0",
"promise": "^7.1.1",
"sqlite3": "^3.0.0"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/josmartin/CbbfService.git"
},
"author": "Jos Martin",
"license": "BSD",
"bugs": {
"url": "https://github.com/josmartin/CbbfService/issues"
},
"homepage": "https://github.com/josmartin/CbbfService",
"production": {
"db_filename": "info.db",
"port": "8080",
"db_saveInterval": "3600000"
},
"development": {
"db_filename": "info_dev.db",
"port": "8080",
"db_saveInterval": "120000"
},
"stageing": {
"db_filename": "info_stage.db",
"port": "8080",
"db_saveInterval": "120000"
}
}