-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.39 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
{
"name": "kingblade-x10iii-tool",
"private": true,
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"ci:build": "NODE_ENV=production vite build",
"type-check": "tsc",
"check": "bun lint && bun type-check",
"ci:check": "bun lint --format json --output-file lint_report.json && bun type-check",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"fix": "bun lint:fix",
"preview": "vite preview",
"prepare": "panda codegen",
"test": "vitest",
"test:ui": "vitest --ui --coverage.enabled",
"test:preview": "vitest-preview && open https://localhost:5006",
"test:dev": "bunx concurrently \"TEST_PREVIEW=true bun test:ui\" \"bun test:preview\"",
"ci:test": "vitest --coverage.enabled",
"analyze": "bunx vite-bundle-visualizer",
"codegen:components": "bunx @park-ui/cli components add --all"
},
"dependencies": {
"@ark-ui/react": "^4.1.2",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@pandacss/dev": "^0.45.2",
"@park-ui/panda-preset": "^0.42.0",
"@tanstack/react-table": "^8.20.5",
"@testing-library/user-event": "^14.5.2",
"@yudiel/react-qr-scanner": "^2.0.8",
"Buffer": "^0.0.0",
"file-saver": "^2.0.5",
"html2canvas-add-mix-blend-mode": "^1.4.1",
"i18next": "^23.16.0",
"lodash-es": "^4.17.21",
"lz-string": "^1.5.0",
"modern-screenshot": "^4.4.39",
"path-browserify": "^1.0.1",
"react": "^19.0.0-rc-fb9a90fa48-20240614",
"react-dom": "^19.0.0-rc-fb9a90fa48-20240614",
"react-helmet-async": "^2.0.5",
"react-i18next": "^15.0.3",
"react-icons": "^5.3.0",
"sql.js": "^1.12.0",
"vike": "^0.4.199",
"vike-react": "^0.5.7",
"vite-plugin-cjs-interop": "^2.1.4"
},
"devDependencies": {
"@builder.io/partytown": "^0.10.2",
"@eslint/compat": "^1.2.0",
"@pandabox/prettier-plugin": "^0.1.3",
"@pandacss/eslint-plugin": "^0.1.15",
"@pandacss/studio": "^0.45.2",
"@testing-library/jest-dom": "^6.6.1",
"@testing-library/react": "^16.0.1",
"@types/bun": "^1.1.11",
"@types/file-saver": "^2.0.7",
"@types/lodash-es": "^4.17.12",
"@types/path-browserify": "^1.0.3",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/sql.js": "^1.4.9",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/coverage-v8": "^2.1.3",
"@vitest/ui": "^2.1.3",
"babel-plugin-react-compiler": "^0.0.0-experimental-fa06e2c-20241016",
"bops": "^1.0.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-compiler": "^0.0.0-experimental-fa06e2c-20241016",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"eslint-plugin-unused-imports": "^4.1.4",
"file-type": "^19.6.0",
"i18next-browser-languagedetector": "^8.0.0",
"jsdom": "^24.1.3",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0",
"vite": "^5.4.9",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.3",
"vitest-preview": "^0.0.1",
"webp-converter": "^2.3.3"
}
}