forked from UnownHash/RotomNG
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.72 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
{
"name": "rotom-ng",
"version": "1.0.0",
"license": "MIT",
"private": true,
"workspaces": [
"apps/rotom-ng-ui",
"libs/base-ui"
],
"scripts": {
"build": "nx run rotom-ng-ui:build",
"build:dev": "nx run rotom-ng-ui:build:development",
"dev": "nx run rotom-ng-ui:dev",
"dev:mock": "VITE_MOCK=true bun run dev",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"clear-cache": "nx clear-cache"
},
"packageManager": "bun@1.3.11",
"engines": {
"node": ">=20.8",
"bun": ">=1.3.0"
},
"dependencies": {
"@number-flow/react": "^0.6.0",
"@swc/helpers": "^0.5.21",
"@tanstack/react-query": "^5.100.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.16.0",
"motion": "^12.39.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^7.15.1",
"react-toastify": "^11.1.0",
"tailwind-merge": "^3.6.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@nx/jest": "^22.7.2",
"@nx/js": "^22.7.2",
"@nx/react": "^22.7.2",
"@nx/vite": "^22.7.2",
"@nx/web": "^22.7.2",
"@nx/workspace": "^22.7.2",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.33",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.3.1",
"msw": "^2.14.6",
"nx": "^22.7.2",
"tailwindcss": "^4.3.0",
"tailwindcss-motion": "^1.1.1",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vite": "^8.0.13"
},
"trustedDependencies": [
"@swc/core",
"esbuild",
"nx",
"unrs-resolver"
]
}