-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 KB
/
package.json
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
{
"name": "minesweeper-store",
"private": true,
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest --reporter=verbose"
},
"main": "src/index.tsx",
"dependencies": {
"@xstate/store": "^2.4.0",
"solid-js": "^1.8.21",
"solid-sonner": "^0.2.8",
"ts-pattern": "^5.3.1"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@solidjs/testing-library": "^0.8.9",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/seedrandom": "^3.0.8",
"autoprefixer": "^10.4.20",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"jsdom": "^25.0.0",
"postcss": "^8.4.41",
"seedrandom": "^3.0.5",
"tailwindcss": "^3.4.9",
"typescript": "^5.6.2",
"typescript-eslint": "^8.0.0",
"vite": "^5.4.0",
"vite-plugin-solid": "^2.10.2",
"vitest": "^2.1.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}