-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.9 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
55
{
"name": "dbd-perk-randomizer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "tsx --test --test-force-exit --import ./lib/test-dom.ts scripts/*.test.ts lib/*.test.ts components/dbd/*.test.ts",
"scrape:perks": "tsx scripts/scrape-perks.ts",
"scrape:loadout": "tsx scripts/scrape-loadout.ts",
"sync:localization": "tsx scripts/sync-localization.ts",
"sync:characters": "tsx scripts/sync-characters.ts",
"sync:descriptions": "tsx scripts/sync-descriptions.ts",
"sync:loadout-localization": "tsx scripts/sync-loadout-localization.ts",
"sync:loadout-descriptions": "tsx scripts/sync-loadout-descriptions.ts",
"sync:loadout-addons": "tsx scripts/sync-loadout-addons.ts",
"test:e2e": "npm run build && playwright test",
"capture:screenshots": "node scripts/capture-screenshots.mjs",
"compare:sources": "tsx scripts/compare-sources.ts",
"capture:fixture": "tsx scripts/capture-perk-fixture.ts",
"sync:author": "tsx scripts/sync-author.ts",
"prune:icons": "tsx scripts/prune-orphan-icons.ts"
},
"dependencies": {
"firebase": "^12.17.1",
"framer-motion": "^13.1.0",
"html2canvas": "^1.4.1",
"lucide-react": "^1.31.0",
"next": "16.3.0",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/jsdom": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"cheerio": "^1.2.0",
"eslint": "^9",
"eslint-config-next": "16.3.0",
"jsdom": "^30.0.1",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"sharp": "^0.35.3",
"tailwindcss": "^4",
"tsx": "^4.23.12",
"typescript": "^5"
}
}