-
-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.42 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "queens-game",
"version": "0.1.0",
"private": true,
"dependencies": {
"@giscus/react": "^3.1.0",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.1.8",
"@vercel/analytics": "^1.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"i18next": "^24.2.2",
"i18next-browser-languagedetector": "^8.0.4",
"lucide-react": "^0.454.0",
"next-themes": "^0.2.1",
"playwright": "^1.51.1",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-github-btn": "^1.4.0",
"react-helmet-async": "^2.0.5",
"react-i18next": "^15.4.1",
"react-router-dom": "^6.27.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"web-vitals": "^3.1.0",
"yargs": "^17.7.2",
"z3-solver": "^4.15.3"
},
"overrides": {
"@svgr/webpack": "^8.0.1",
"@adobe/css-tools": "^4.3.1"
},
"scripts": {
"start": "vite --port 3001 --host",
"start:prod": "set NODE_ENV=production && vite --port 3001 --host",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"ptr:c": "npx prettier ./src --check",
"ptr:w": "npx prettier ./src --write",
"ptr:c:levels": "npx prettier ./src/utils/levels --check",
"ptr:w:levels": "npx prettier ./src/utils/levels --write"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.13.14",
"@types/react": "^19.2.14",
"@types/yargs": "^17.0.33",
"@vitejs/plugin-react": "^4.1.1",
"autoprefixer": "^10.4.20",
"jsdom": "^22.1.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.8.3",
"vite": "^4.5.5",
"vitest": "^0.34.6"
}
}