-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.79 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.79 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
{
"name": "dbd-build-optimizer",
"private": true,
"version": "0.0.24",
"type": "module",
"scripts": {
"dev": "vite",
"make-perks": "node scripts/make_perks_from_dennisreep.mjs",
"build": "tsc -b && vite build",
"postbuild": "node -e \"require('fs').copyFileSync('dist/index.html','dist/404.html')\"",
"lint": "eslint .",
"predeploy": "npm run version:bump:patch && npm run version:push",
"deploy": "npm run build && npm run deploy:ghp",
"preview": "vite preview",
"version:bump:patch": "npm version patch -m \"chore(release): v%s\"",
"version:bump:minor": "npm version minor -m \"chore(release): v%s\"",
"version:bump:major": "npm version major -m \"chore(release): v%s\"",
"version:push": "git push && git push --follow-tags",
"deploy:ghp": "gh-pages -d dist -b gh-pages -m \"deploy v$(node -p \\\"require('./package.json').version\\\")\"",
"deploy:nobump": "npm run build && npm run deploy:ghp",
"deploy:minor": "npm run version:bump:minor && npm run version:push && npm run build && npm run deploy:ghp",
"deploy:major": "npm run version:bump:major && npm run version:push && npm run build && npm run deploy:ghp"
},
"dependencies": {
"cheerio": "^1.1.2",
"node-fetch": "^2.7.0",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@tailwindcss/vite": "^4.1.13",
"@types/node": "^24.10.1",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"gh-pages": "^6.3.0",
"globals": "^16.3.0",
"tailwindcss": "^4.1.13",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2"
}
}