-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.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": "mila.kuchta@gmail.com"
},
"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": "^9.17.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@tailwindcss/vite": "^4.0.0-beta.8",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-react-compiler": "^19.0.0-beta-df7b47d-20241124",
"daisyui": "^5.0.0-alpha.53",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-compiler": "^19.0.0-beta-df7b47d-20241124",
"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.0",
"tailwindcss": "^4.0.0-beta.8",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.5",
"vite-plugin-pwa": "^0.21.1"
}
}