-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "discit-api",
"version": "4.0.0",
"description": "RESTful API for disc golf discs.",
"author": "Chris Leveille <cdleveille@gmail.com",
"license": "MIT",
"type": "module",
"module": "./src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/cdleveille/discit-api.git"
},
"bugs": {
"url": "https://github.com/cdleveille/discit-api/issues"
},
"homepage": "https://github.com/cdleveille/discit-api#readme",
"scripts": {
"compose": "docker compose -f \"./.discit-dev-container/docker-compose.yml\" up -d --build",
"lint": "eslint . && prettier --check .",
"fix": "eslint --fix . && prettier --write .",
"deploy": "flyctl deploy --remote-only --detach --no-cache --config fly.toml",
"dev": "bun --watch ./src/index.ts",
"start": "bun ./src/index.ts"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/bun": "^1.1.13",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
},
"dependencies": {
"@hono/zod-openapi": "^0.16.4",
"@scalar/hono-api-reference": "^0.5.158",
"discit-types": "^2.1.0",
"hono": "^4.6.9",
"mongoose": "^8.7.3"
}
}