-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.07 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.07 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "itemdeck",
"version": "0.15.6",
"description": "Interactive Card Collection Viewer - Display, explore, and play with card collections",
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:analyse": "ANALYZE=true npm run build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"size": "size-limit",
"size:check": "size-limit --check",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:headed": "playwright test --headed",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build -o storybook-static"
},
"size-limit": [
{
"path": "dist/assets/*.js",
"limit": "200 KB",
"gzip": true
},
{
"path": "dist/assets/*.css",
"limit": "15 KB",
"gzip": true
}
],
"license": "GPL-3.0-or-later",
"devDependencies": {
"@axe-core/playwright": "^4.11.0",
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.57.0",
"@size-limit/file": "^11.2.0",
"@size-limit/preset-app": "^11.2.0",
"@tanstack/react-query-devtools": "^5.91.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.0.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.0",
"fake-indexeddb": "^6.2.5",
"jsdom": "^27.3.0",
"prettier": "^3.0.0",
"rollup-plugin-visualizer": "^5.14.0",
"size-limit": "^11.2.0",
"terser": "^5.44.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vite": "^6.0.0",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.16",
"storybook": "^10.1.11",
"@storybook/react-vite": "^10.1.11",
"@chromatic-com/storybook": "^4.1.3",
"@storybook/addon-vitest": "^10.1.11",
"@storybook/addon-a11y": "^10.1.11",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-onboarding": "^10.1.11",
"eslint-plugin-storybook": "^10.1.11",
"playwright": "^1.57.0",
"@vitest/browser-playwright": "^4.0.16"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^8.0.0",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-virtual": "^3.13.13",
"framer-motion": "^12.23.26",
"idb": "^8.0.3",
"idb-keyval": "^6.2.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-error-boundary": "^6.0.0",
"zod": "^4.2.1",
"zustand": "^5.0.9"
},
"engines": {
"node": ">=20.0.0"
}
}