-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
90 lines (90 loc) · 2.55 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "open-map-kit-server",
"version": "0.12.0",
"description": "OpenMapKit Server is the lightweight server component of OpenMapKit that handles the collection and aggregation of OpenStreetMap and OpenDataKit data.",
"main": "index.js",
"scripts": {
"startdev": "concurrently \"yarn server\" \"yarn frontend\"",
"start": "yarn build && node server.js",
"server": "node server.js",
"build": "node build_frontend.js",
"frontend": "node start_frontend.js",
"send_to_s3": "node util/send_data_files.js",
"get_from_s3": "node util/get_data_files.js",
"pushbuild": "yarn build && gh-pages -d frontend/build -b dist",
"test": "tape test/**/**/*.test.js | faucet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AmericanRedCross/OpenMapKitServer.git"
},
"keywords": [
"OpenMapKit",
"OpenStreetMap",
"OpenDataKit",
"OSM",
"ODK",
"OMK",
"embedded",
"portable server",
"posm",
"Field Papers"
],
"author": "Nicholas Hallahan",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/AmericanRedCross/OpenMapKitServer/issues"
},
"homepage": "https://github.com/AmericanRedCross/OpenMapKitServer#readme",
"dependencies": {
"JSONStream": "^1.3.1",
"archiver": "^1.3.0",
"async": "^1.5.2",
"body-parser": "^1.14.2",
"concurrently": "^3.5.1",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.3.5",
"cors": "^2.7.1",
"debug": "^2.2.0",
"express": "^4.13.3",
"express-session": "^1.11.3",
"fs-extra": "^5.0.0",
"graceful-fs": "^4.1.6",
"json2csv": "^3.7.2",
"libxmljs": "^0.18.4",
"mkdirp": "^0.5.1",
"moment": "^2.21.0",
"morgan": "^1.6.1",
"multiparty": "^4.1.2",
"mv": "^2.1.1",
"@monolambda/s3": "1.0.2",
"on-finished": "^2.3.0",
"openrosa-form-submission-middleware": "^1.0.4",
"openrosa-formlist": "^1.0.1",
"openrosa-manifest": "^0.0.1",
"passport": "^0.2.2",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"permission": "^1.1.0",
"python-shell": "^0.2.0",
"q": "^1.4.1",
"recursive-readdir": "^1.3.0",
"request": "^2.72.0",
"serve-index": "^1.7.2",
"tempy": "^0.1.0",
"traverse": "^0.6.6",
"type-is": "^1.6.10",
"xform-to-json": "^1.2.1",
"xml2js": "^0.4.16",
"xml2js-xpath": "^0.8.0",
"xmlbuilder": "^8.2.2",
"xtend": "^4.0.1"
},
"devDependencies": {
"faucet": "0.0.1",
"semistandard": "^10.0.0",
"supertest": "^1.1.0",
"gh-pages": "^1.2.0",
"tape": "^4.2.2"
}
}