-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.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
{
"name": "cecdss-backend",
"version": "1.0.0",
"description": "Program to integrate processed F3 data with FRCS, TEA",
"main": "index.js",
"repository": "https://github.com/ucdavis/cecdss-backend.git",
"author": "Laura Holstege <[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": "npm run build && node ./dist/test.js"
},
"dependencies": {
"@project-osrm/osrm": "^5.27.1",
"@types/cors": "^2.8.17",
"@ucdavis/frcs": "1.2.9",
"@ucdavis/lca": "^1.6.8",
"@ucdavis/tea": "^1.4.3",
"applicationinsights": "^3.1.0",
"body-parser": "^1.20.2",
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-validator": "^7.2.0",
"geocluster": "^0.1.1",
"geolib": "^3.3.4",
"isomorphic-fetch": "^3.0.0",
"knex": "^3.1.0",
"pg": "^8.12.0",
"shortid": "^2.2.16",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/geolib": "^2.0.23",
"@types/isomorphic-fetch": "0.0.39",
"@types/node": "^20.14.9",
"@types/papaparse": "^5.3.14",
"@types/pg": "^8.11.6",
"@types/project-osrm__osrm": "^5.27.3",
"@types/shortid": "^0.0.32",
"@types/swagger-ui-express": "^4.1.6",
"nodemon": "^3.1.4",
"typescript": "^5.5.2"
}
}