-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "radixverse",
"version": "0.0.4",
"license": "MIT",
"homepage": "https://kuchta.github.com/radixverse",
"repository": "kuchta/radixverse",
"type": "module",
"exports": "./src/utils.ts",
"engines": {
"node": ">= v20"
},
"author": {
"name": "Míla Kuchta",
"email": "[email protected]"
},
"scripts": {
"start": "vite --host",
"preview": "vite preview",
"check": "tsc",
"lint": "eslint --report-unused-disable-directives src",
"test": "tsx --test src/**/*.test.ts",
"build": "vite build",
"pre-commit": "pnpm check && pnpm lint && pnpm test && pnpm build"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@tailwindcss/vite": "^4.0.0-beta.9",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
"daisyui": "^5.0.0-beta.1",
"eslint": "^9.18.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react-router-dom": "^7.1.1",
"tailwindcss": "^4.0.0-beta.9",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.7",
"vite-plugin-pwa": "^0.21.1"
}
}