-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
122 lines (122 loc) · 3.53 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "block-sorting",
"version": "1.21.0",
"description": "Mobile Block sorting game, as a Progressive Web App",
"author": {
"name": "Matthijs Groen",
"email": "matthijs.groen@gmail.com"
},
"license": "CC BY-NC-SA 4.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"preview": "yarn build && vite preview",
"test": "vitest",
"test:performance": "bin/test-performance.ts",
"check-types": "tsc --noEmit",
"pwa-assets-generation": "pwa-assets-generation",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"generate-level-seeds": "bin/generate-level-seeds.ts run",
"verify-level-seeds": "bin/generate-level-seeds.ts verify"
},
"dependencies": {
"bson": "^6.8.0",
"clsx": "^2.1.1",
"jsqr-es6": "^1.4.0-1",
"localforage": "^1.10.0",
"pako": "^2.1.0",
"qrcode": "^1.5.4",
"react": "19.0.0-rc-d6cb4e77-20240911",
"react-dom": "19.0.0-rc-d6cb4e77-20240911"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-react": "^7.25.7",
"@chromatic-com/storybook": "^2.0.2",
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.12.0",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/blocks": "^8.3.5",
"@storybook/react": "^8.3.5",
"@storybook/react-vite": "^8.3.5",
"@storybook/test": "^8.3.5",
"@types/babel__core": "^7.20.5",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.7.5",
"@types/pako": "^2.0.3",
"@types/qrcode": "^1.5.5",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@vite-pwa/assets-generator": "^0.2.6",
"@vitejs/plugin-react": "^4.3.2",
"ansi-colors": "^4.1.3",
"autoprefixer": "^10.4.20",
"commander": "^12.1.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^0.9.0",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.11.0",
"immer": "^10.1.1",
"markdown-it": "^14.1.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"storybook": "^8.3.5",
"tailwindcss": "^3.4.14",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0",
"vite": "^5.4.9",
"vite-plugin-markdown": "^2.2.0",
"vite-plugin-pwa": "^0.20.5",
"vitest": "^2.1.3",
"workbox-core": "^7.1.0",
"workbox-window": "^7.1.0"
},
"resolutions": {
"sharp": "0.32.6",
"sharp-ico": "0.1.5"
},
"overrides": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc"
},
"packageManager": "yarn@4.5.0",
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"browserslist": {
"production": [
"> 5%",
"not dead",
"not op_mini all"
],
"development": [
"> 5%",
"not dead",
"not op_mini all"
]
},
"dependenciesMeta": {
"prettier-plugin-tailwindcss@0.6.8": {
"unplugged": true
}
}
}