-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@hellhub-collective/api",
"description": "The official API for the community driven HellHub app",
"module": "./src/index.ts",
"main": "build/index.mjs",
"types": "build/index.d.ts",
"type": "module",
"keywords": [
"typescript",
"async",
"bun",
"typesafe",
"api",
"helldivers",
"videogame"
],
"files": [
"build"
],
"scripts": {
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"db:reset": "rm -rf ./databases",
"db:init": "bun run ./scripts/init.ts",
"dev": "bun run --hot ./src/index.ts",
"refresh": "bun run ./scripts/refresh.ts",
"generate": "bun run ./scripts/generate.ts",
"app:reset": "rm -rf ./build",
"app:build": "bun build ./src/index.ts --minify --entry-naming=\"[name].mjs\" --outdir=\"build\" --sourcemap=\"external\" --target=\"node\""
},
"devDependencies": {
"@types/bun": "latest",
"@types/qs": "^6.9.12",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"bun-plugin-dts": "^0.2.1",
"bun-types": "^1.0.30",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@hono/sentry": "^1.0.1",
"@prisma/client": "^5.13.0",
"@sentry/bun": "^7.110.1",
"chalk": "^5.3.0",
"croner": "^8.0.2",
"hono": "^4.1.0",
"prisma": "^5.13.0",
"qs": "^6.12.0"
},
"trustedDependencies": [
"@prisma/client",
"@prisma/engines",
"prisma"
]
}