-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.63 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.63 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": "wordle-client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"wordlist:build": "tsx scripts/build-wordlists.ts",
"worldlist:build:nl": "cross-env LANGS=nl tsx scripts/build-wordlists.ts",
"wordlist:build:en": "cross-env LANGS=en tsx scripts/build-wordlists.ts",
"wordlist:clean": "rimraf public/wordlists && node -e \"require('fs').mkdirSync('public/wordlists',{recursive:true})\" && rimraf public/LICENSE.txt && rimraf public/OpenTaal-LICENSE.txt && rimraf public/SCOWL-LICENSE.txt && rimraf public/SCOWL-README.txt && rimraf public/ATTRIBUTION.md",
"wordlist:refresh": "pnpm run wordlist:clean && pnpm run wordlist:build"
},
"dependencies": {
"i18next": "^25.0.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-i18next": "^16.0.0",
"react-router": "^7.8.0"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/node": "^25.0.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react-swc": "^4.0.0",
"cross-env": "^10.0.0",
"eslint": "^10.0.0",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.0.0",
"jsdom": "^29.0.0",
"less": "^4.4.0",
"rimraf": "^6.0.1",
"tar": "^7.4.3",
"tsx": "^4.20.4",
"typescript": "~5.9.0",
"typescript-eslint": "^8.39.1",
"vite": "^8.0.0",
"vitest": "^4.0.0"
},
"pnpm": {
"overrides": {
"vite": "^8.0.0"
}
}
}