-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.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
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
{
"name": "macrostrat-api",
"version": "3.0.0-dev",
"description": "The API for SCIENCE",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/UW-Macrostrat/macrostrat-api.git"
},
"scripts": {
"dev": "nodemon --watch v2 --exec ts-node --transpileOnly server.ts",
"start": "ts-node --transpileOnly server.ts",
"docker": "docker build -t macrostrat-api . && docker run --rm -it -p 5000:5000 macrostrat-api",
"serve": "ts-node --transpileOnly server.ts",
"test": "mocha ./v2",
"defs": "ts-node --transpileOnly ./v2/utilities/validateDefs.ts",
"build-defs": "ts-node --transpileOnly ./v2/utilities/getOutputFields.ts",
"build-changes": "grip ./v2/CHANGELOG.md --export ./v2/changes.html"
},
"keywords": [
"macrostrat",
"macrostratigraphy"
],
"contributors": [
{
"name": "John J Czaplewski"
},
{
"name": "Shanan Peters"
},
{
"name": "Daven Quinn"
}
],
"license": "CC0",
"dependencies": {
"@mapbox/polyline": "^0.2.0",
"@turf/buffer": "^4.6.1",
"@turf/envelope": "^4.6.0",
"@types/node": "^20.11.5",
"async": "1.5.2",
"body-parser": "^1.6.3",
"brute-force-equal-area": "git+https://github.com/UW-Macrostrat/brute-force-equal-area.git",
"csv-express": "^1.1.0",
"dbgeo": "^1.0.1",
"dotenv": "^16.4.5",
"express": "4.x.x",
"filesize-parser": "^1.3.0",
"geojson-precision": "^0.4.0",
"image-size": "^0.5.0",
"mapshaper": "^0.3.20",
"memory-cache": "^0.1.4",
"microtime": "^3.0.0",
"multiline": "^1.0.2",
"mysql": "2.7.x",
"pg": "^8.7.1",
"pg-native": "^3.0.0",
"portscanner": "^1.0.0",
"redis": "^2.4.2",
"tilestrata": "^2.0.1",
"tilestrata-dependency": "^0.4.0",
"topojson": "^1.6.19",
"ts-node": "^10.9.2",
"turf-area": "^1.1.1",
"turf-buffer": "^1.0.4",
"turf-point": "^0.1.6",
"turf-voronoi": "git+https://github.com/Turfjs/turf-voronoi.git",
"typescript": "^5.3.3",
"underscore": "^1.8.3",
"universal-analytics": "^0.4.6",
"wellknown": "^0.3.0",
"yesql": "^7.0.0"
},
"devDependencies": {
"mocha": "^1.21.4",
"node-uuid": "^1.4.3",
"nodemon": "^3.0.3",
"prettier": "^3.2.3",
"should": "^4.0.4",
"supertest": "^0.14.0",
"validator": "^3.34.0"
},
"packageManager": "[email protected]",
"prettier": {
"proseWrap": "always"
}
}