-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "cec-dataprep",
"version": "1.0.0",
"description": "Prepare data for CECDSS",
"main": "index.js",
"repository": "https://github.com/ucdavis/cec-dataprep.git",
"author": "Scott Kirkland <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"dev": "npm run build && node dist",
"watch": "nodemon --watch . -e ts --exec npm run dev",
"start": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@project-osrm/osrm": "^5.27.1",
"@rauschma/stringio": "^1.4.0",
"@ucdavis/frcs": "^2.0.0",
"body-parser": "^1.20.2",
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"event-stream": "^4.0.1",
"fs": "0.0.1-security",
"gdal": "^0.11.1",
"geolib": "^3.3.4",
"geotiff": "^2.1.3",
"knex": "^3.1.0",
"pg": "^8.11.5",
"ps": "^1.0.0",
"shpjs": "^5.0.1",
"srtm-elevation": "^2.1.2",
"tiff.js": "^1.0.0"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/event-stream": "^4.0.5",
"@types/gdal": "^0.9.6",
"@types/geolib": "^2.0.23",
"@types/knex": "^0.15.2",
"@types/node": "^20.12.13",
"@types/pg": "^8.11.6",
"@types/project-osrm__osrm": "^5.27.3",
"@types/shpjs": "^3.4.7",
"nodemon": "^3.1.2",
"typescript": "^5.4.5"
}
}