-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.6 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": "@recaptime-dev/hcb-explorer-discord",
"license": "MPL-2.0",
"scripts": {
"start:build ": "npm run build && dotenvx run -f .env.production -- node dist/index.js",
"dev:build": "npm run build && dotenvx run -f .env.development -- node dist/index.js",
"start": "dotenvx run -f .env.production -- tsx src/index.ts",
"dev": "dotenvx run -f .env.development -- tsx watch src/index.ts",
"dev:commands": "dotenvx run -f .env.development -- tsx src/scripts/deploy-commands.ts",
"commands": "dotenvx run -f .env.production -- tsx src/scripts/deploy-commands.ts",
"build": "tsc --build && npm run sentry:sourcemaps",
"test": "echo \"Error: no test specified\" && exit 1",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org recaptime-dev --project hcb-explorer-discord ./dist && sentry-cli sourcemaps upload --org recaptime-dev --project hcb-explorer-discord ./dist"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.31.0",
"@hono/node-server": "^1.13.7",
"@sentry/cli": "^2.39.1",
"@sentry/node": "^8.46.0",
"@sentry/profiling-node": "^8.46.0",
"discord-api-types": "^0.37.111",
"discord.js": "^14.16.3",
"hono": "^4.6.14",
"tsx": "^4.19.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"repository": {
"type": "git",
"url": "https://github.com/recaptime-dev/hcb-explorer-discord.git"
}
}