-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 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
{
"name": "transito-server",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon ./src/server.ts",
"build": "rm -rf dist/* && tsc",
"start": "node dist/server.js",
"docker:build": "docker compose up --build",
"docker:start": "docker start transito-server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"nodemonConfig": {
"ignore": [
"**/json/**"
]
},
"packageManager": "pnpm@9.1.0",
"dependencies": {
"@koa/cors": "^5.0.0",
"dotenv": "^16.4.5",
"geolib": "^3.3.4",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-zod-router": "^2.3.0",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"minisearch": "^7.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-json": "^2.0.23",
"@types/koa-logger": "^3.1.5",
"@types/koa__cors": "^5.0.0",
"@types/lodash": "^4.17.7",
"@types/luxon": "^3.4.2",
"@types/node": "^22.5.4",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}