forked from PastVu/pastvu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 4.29 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "pastvu",
"version": "1.3.8",
"description": "Retrospective topography of media content",
"homepage": "https://github.com/pastvu/pastvu",
"keywords": [
"oldmos",
"pastvu"
],
"private": true,
"author": {
"name": "Paul Klimashkin",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:pastvu/pastvu.git"
},
"bugs": {
"url": "https://github.com/pastvu/pastvu/issues",
"email": "[email protected]"
},
"main": "app.js",
"scripts": {
"app": "node --max-old-space-size=4096 bin/run.js",
"appManualGC": "node --max-old-space-size=4096 --nouse-idle-notification --expose-gc bin/run.js --manualGarbageCollect=30000",
"inspect": "node --inspect=0.0.0.0 --max-old-space-size=4096 --trace-deprecation --trace-warnings --trace-uncaught bin/run.js",
"inspect-brk": "node --inspect-brk=0.0.0.0 --max-old-space-size=4096 bin/run.js",
"inspectManualGC": "node --inspect=0.0.0.0 --max-old-space-size=4096 --nouse-idle-notification --expose-gc bin/run.js --manualGarbageCollect=30000",
"uploader": "node --max-old-space-size=2048 bin/run.js --script ./uploader.js",
"downloader": "node --max-old-space-size=2048 bin/run.js --script ./downloader.js",
"sitemap": "node --max-old-space-size=2048 bin/run.js --script ./sitemap.js",
"notifier": "node --max-old-space-size=2048 bin/run.js --script ./notifier.js",
"lint": "./node_modules/.bin/eslint .",
"lintfix": "./node_modules/.bin/eslint . --fix",
"build": "grunt",
"test": "grunt test"
},
"dependencies": {
"@mapbox/geojson-area": "0.2.2",
"@mapbox/geojsonhint": "3.0.0",
"@turf/intersect": "6.1.3",
"@turf/turf": "5.1.6",
"async-exit-hook": "2.0.1",
"aws-sdk": "2.610.0",
"basic-auth-connect": "1.0.0",
"bcrypt": "5.0.0",
"body-parser": "1.19.0",
"bufferutil": "4.0.1",
"compression": "1.7.4",
"content-disposition": "0.5.3",
"cookie": "0.4.0",
"docker-secret": "1.1.2",
"express": "4.17.1",
"express-urlrewrite": "1.2.0",
"formidable": "1.2.1",
"geojson-rewind": "0.3.1",
"gm": "1.23.1",
"http-proxy-middleware": "0.20.0",
"locale": "0.1.0",
"lodash": "4.17.20",
"log4js": "1.1.1",
"lru-cache": "5.1.1",
"make-dir": "3.0.0",
"mime": "2.4.4",
"moment": "2.24.0",
"mongoose": "4.9.9",
"ms": "2.1.2",
"mv": "2.1.1",
"nodemailer": "6.4.2",
"pug": "2.0.4",
"redis": "2.8.0",
"request": "2.88.0",
"semver": "7.1.1",
"serve-favicon": "2.5.0",
"serve-index": "1.9.1",
"socket.io": "2.3.0",
"socket.io-events": "0.4.6",
"step": "1.0.0",
"underscore.string": "3.3.5",
"useragent": "2.3.0",
"yamlparser": "0.0.2",
"yargs": "16.1.0"
},
"devDependencies": {
"@babel/core": "7.8.3",
"@babel/plugin-proposal-export-default-from": "7.8.3",
"@babel/plugin-proposal-export-namespace-from": "7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3",
"@babel/plugin-proposal-optional-chaining": "7.8.3",
"@babel/plugin-transform-modules-commonjs": "7.8.3",
"@babel/register": "7.8.3",
"ansi-colors": "4.1.1",
"babel-eslint": "10.0.3",
"eslint": "6.8.0",
"eslint-plugin-babel": "5.3.0",
"grunt": "1.0.4",
"grunt-babel": "8.0.0",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-compress": "1.6.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-pug": "2.0.0",
"grunt-contrib-requirejs": "1.0.0",
"grunt-eslint": "23.0.0",
"grunt-exec": "3.0.0",
"grunt-mkdir": "1.0.0",
"grunt-string-replace": "1.3.1",
"husky": "5.0.4",
"jqueryui-amd": "0.0.2",
"less": "3.10.3",
"less-middleware": "3.1.0",
"lint-staged": "10.0.4",
"osm-and-geojson": "0.1.2",
"requirejs": "2.3.6",
"xmldom": "0.2.1"
},
"engines": {
"node": "15.3.0"
}
}