forked from thesam73/wordle
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 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
56
57
{
"name": "wordle",
"version": "0.8.0-SNAPSHOT",
"private": true,
"type": "module",
"homepage": "https://zborle.mk",
"repository": {
"type": "git",
"url": "git+https://github.com/zborle/wordle.git"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"classnames": "^2.5.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"web-vitals": "^4.2.4"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && cp CNAME dist/",
"preview": "vite preview",
"test": "vitest",
"deploy": "gh-pages -d dist -b gh-pages"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"gh-pages": "^6.2.0",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"jsdom": "^26.0.0",
"postcss": "^8.5.2",
"prettier": "^3.5.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.7.2",
"vite": "^6.1.0",
"vitest": "^3.0.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}