-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.41 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.41 KB
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
{
"name": "transito-server",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon -r tsconfig-paths/register ./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/**"
]
},
"_moduleAliases": {
"@fetchers": "dist/fetchers",
"@json": "dist/json",
"@routes": "dist/routes",
"@app-types": "dist/types",
"@utils": "dist/utils"
},
"packageManager": "pnpm@10.27.0",
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^15.2.0",
"dotenv": "^17.2.3",
"geolib": "^3.3.4",
"koa": "^3.1.1",
"koa-bodyparser": "^4.4.1",
"koa-json": "^2.0.2",
"koa-logger": "^4.0.0",
"lodash": "^4.17.21",
"luxon": "^3.7.2",
"minisearch": "^7.2.0",
"module-alias": "^2.2.3",
"zod": "^4.3.4"
},
"devDependencies": {
"@types/koa": "^3.0.1",
"@types/koa-bodyparser": "^4.3.13",
"@types/koa-json": "^2.0.24",
"@types/koa-logger": "^3.1.5",
"@types/koa__cors": "^5.0.1",
"@types/lodash": "^4.17.21",
"@types/luxon": "^3.7.1",
"@types/node": "^25.0.3",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"wrangler": "^4.54.0"
}
}