-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 950 Bytes
/
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
{
"name": "@quoll/api",
"version": "0.15.3",
"private": true,
"dependencies": {
"@mapbox/polyline": "^1.1.1",
"@quoll/lib": "^0.5.7",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.19.2",
"express-oauth2-jwt-bearer": "^1.6.0",
"moment": "^2.29.4",
"mongoose": "^6.12.3",
"uuid": "^8.3.2"
},
"scripts": {
"start": "quoll-build-deps && nodemon src/server.ts",
"start-db": "docker-compose -f db/local/compose.yaml up",
"clean-dist": "rm -rf dist",
"build": "tsc",
"serve": "node dist/server.js",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mapbox__polyline": "^1.0.5",
"@types/node": "^22.1.0",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}