-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.68 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
{
"name": "webdev-bot",
"version": "1.0.0",
"description": "Web Dev & Web Design discord bot",
"keywords": [],
"license": "MIT",
"author": "",
"type": "module",
"scripts": {
"build": "tsup && tsc-alias",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"deploy": "tsx src/scripts/deploy-commands.ts",
"docker:build": "NODE_VERSION=$(cat .nvmrc | tr -d 'v') docker compose build",
"docker:dev": "NODE_VERSION=$(cat .nvmrc | tr -d 'v') docker compose --profile dev up",
"docker:prod": "NODE_VERSION=$(cat .nvmrc | tr -d 'v') docker compose --profile prod up -d",
"docker:stop": "docker compose down",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"typecheck": "tsc --noEmit",
"test": "tsx --test '**/*.test.ts'",
"test:ci": "NODE_ENV=test node --test dist/**/*.test.js",
"prepare": "husky",
"pre-commit": "lint-staged",
"sync-guides": "tsx src/scripts/sync-guides.ts",
"sync-guides:init": "tsx src/scripts/sync-guides.ts --initialize"
},
"dependencies": {
"discord.js": "^14.26.4",
"node-cron": "^4.2.1",
"typescript": "^6.0.3",
"web-features": "^3.9.2"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@types/node": "^24.5.2",
"@types/node-cron": "^3.0.11",
"husky": "^9.1.7",
"lint-staged": "^16.2.1",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"oxlint-tsgolint": "^0.23.0",
"tsc-alias": "^1.8.17",
"tsup": "^8.5.0",
"tsx": "^4.20.6"
},
"lint-staged": {
"*.{js,ts}": "pnpm run lint",
"*.{js,ts,json}": "oxfmt --no-error-on-unmatched-pattern"
},
"packageManager": "pnpm@10.17.1"
}