wikipedia-game-solver/apps/api/package.json

60 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2024-08-09 23:51:41 +02:00
{
"name": "@repo/api",
"version": "1.0.0-staging.4",
2024-08-09 23:51:41 +02:00
"private": true,
"type": "module",
"imports": {
2024-08-16 02:50:11 +02:00
"#*": "./*"
},
"exports": {
".": "./.adonisjs/api.ts"
2024-08-09 23:51:41 +02:00
},
"scripts": {
2024-08-16 02:50:11 +02:00
"start": "node --import=tsx ./bin/server.ts",
"dev": "node --import=tsx --watch --watch-preserve-output ./bin/server.ts",
"ace": "node --import=tsx ./bin/console.ts",
"tuyau": "node --run ace -- tuyau:generate && node --run ace -- tuyau:generate:openapi --destination=\".adonisjs/openapi.yaml\"",
"build": "node --run tuyau",
2024-08-25 01:50:29 +02:00
"database:migrate": "node --run ace -- migration:run",
2024-08-16 02:50:11 +02:00
"test": "c8 node --import=tsx ./bin/test.ts",
"test-shortest-paths": "node --import=tsx ./shortest-paths-tests.ts",
2024-08-16 02:50:11 +02:00
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives",
2024-08-09 23:51:41 +02:00
"lint:typescript": "tsc --noEmit"
},
"dependencies": {
"@adonisjs/auth": "catalog:",
"@adonisjs/core": "catalog:",
"@adonisjs/cors": "catalog:",
"@adonisjs/lucid": "catalog:",
2024-08-12 15:13:24 +02:00
"@adonisjs/limiter": "catalog:",
2024-08-09 23:51:41 +02:00
"@repo/utils": "workspace:*",
2024-08-16 02:50:11 +02:00
"@repo/wikipedia": "workspace:*",
"@tuyau/core": "catalog:",
"@tuyau/utils": "catalog:",
"@tuyau/openapi": "catalog:",
2024-08-09 23:51:41 +02:00
"@vinejs/vine": "catalog:",
"luxon": "catalog:",
"pg": "catalog:",
2024-08-09 23:51:41 +02:00
"reflect-metadata": "catalog:",
"tsx": "catalog:",
"pino-pretty": "catalog:"
},
"devDependencies": {
"@adonisjs/assembler": "catalog:",
"@japa/api-client": "catalog:",
"@japa/assert": "catalog:",
"@japa/plugin-adonisjs": "catalog:",
"@japa/runner": "catalog:",
"@repo/config-typescript": "workspace:*",
"@repo/eslint-config": "workspace:*",
"@total-typescript/ts-reset": "catalog:",
"@types/luxon": "catalog:",
"@types/node": "catalog:",
2024-08-12 14:21:34 +02:00
"better-sqlite3": "catalog:",
"c8": "catalog:",
2024-08-09 23:51:41 +02:00
"eslint": "catalog:",
"openapi-types": "catalog:",
"typescript": "catalog:"
}
}