-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.62 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.62 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
{
"name": "webdev-bot",
"version": "1.0.0",
"description": "Web Dev & Web Design discord bot",
"type": "module",
"scripts": {
"build:ci": "npm run build:ts && npm run build:copy",
"build:dev": "pnpm run build:ts && pnpm run build:copy",
"build:ts": "tsup",
"build:copy": "node scripts/copy-assets.js",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"deploy": "tsx src/util/deploy.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",
"check": "biome check --write .",
"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 scripts/sync-guides.js",
"sync-guides:init": "tsx scripts/sync-guides.js --initialize"
},
"keywords": [],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.17.1",
"dependencies": {
"discord.js": "^14.22.1",
"node-cron": "^4.2.1",
"typescript": "^5.9.3",
"web-features": "^3.9.2"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/node": "^24.5.2",
"@types/node-cron": "^3.0.11",
"husky": "^9.1.7",
"lint-staged": "^16.2.1",
"tsup": "^8.5.0",
"tsx": "^4.20.6"
},
"lint-staged": {
"*.{ts,js}": [
"biome format --write",
"biome lint --fix"
]
}
}