-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.02 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
{
"name": "vite-react-template",
"private": true,
"version": "0.0.0",
"scripts": {
"clean": "rm -rf node_modules",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:biome": "pnpx @biomejs/biome lint --error-on-warnings ./src",
"lint:biome:fix": "pnpx @biomejs/biome lint --write ./src",
"format": "pnpx @biomejs/biome format ./src",
"format:fix": "pnpx @biomejs/biome format ./src --write",
"format:prettier": "prettier . --check --config .prettierrc.mjs --ignore-path .prettierignore",
"test": "jest",
"check": "npm run lint && npm run format:biome && npm run tsc && npm run test",
"tsc": "tsc -p tsconfig.json",
"dev": "vite --host",
"build": "npm run build:sw:dev && vite build",
"preview": "vite preview",
"build:sw": "export NODE_ENV=production && node ./build.config.js",
"build:sw:dev": "export NODE_ENV=development && node ./build.config.js"
},
"dependencies": {
"@ark-ui/react": "^5.37.2",
"@radix-ui/react-accordion": "^1.2.17",
"@radix-ui/react-popover": "^1.1.20",
"@radix-ui/react-select": "^2.3.4",
"@reduxjs/toolkit": "^2.12.0",
"@talkohavy/filters": "^3.0.0",
"@talkohavy/lodash": "^1.4.1",
"@talkohavy/table": "^1.0.12",
"@tanstack/react-virtual": "^3.14.7",
"axios": "^1.18.1",
"clsx": "^2.1.1",
"create-query-language": "^1.2.0",
"highlight.js": "^11.11.1",
"prismjs": "^1.30.0",
"radix-ui": "^1.6.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-redux": "^9.3.0",
"react-router": "^8.2.0",
"react-simple-code-editor": "^0.14.1",
"react-tooltip": "^6.0.8",
"socket.io-client": "^4.8.3",
"sonner": "^2.0.7"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"@vitejs/plugin-react": "^6.0.3",
"biome": "^0.3.3",
"esbuild": "^0.28.1",
"eslint": "^10.7.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-perfectionist": "^5.10.0",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jsonc-parser": "^3.3.1",
"oxlint": "^1.74.0",
"oxlint-tsgolint": "^0.25.0",
"prettier": "^3.9.5",
"sass-embedded": "^1.100.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"ts-jest": "^29.4.11",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-svgr": "^5.2.0"
},
"packageManager": "pnpm@11.15.1"
}