-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.4 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
{
"name": "vite-native-mf",
"private": true,
"workspaces": [
"host",
"remote"
],
"scripts": {
"dev": "bun run dev:host & bun run dev:remote",
"dev:host": "bun --cwd host dev",
"dev:remote": "bun --cwd remote dev",
"build": "bun run build:host && bun run build:remote",
"build:host": "bun --cwd host build",
"build:remote": "bun --cwd remote build",
"preview:host": "bun --cwd host preview",
"preview:remote": "bun --cwd remote preview",
"lint": "bun --cwd host lint && bun --cwd remote lint"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"use-local-storage-state": "^19.5.0",
"vite": "8.0.0-beta.4",
"vite-plugin-external": "^6.2.2",
"vite-plugin-html": "^3.2.2",
"vite-plugin-module-alias": "^1.3.5"
},
"dependencies": {
"@types/lodash-es": "^4.17.12",
"canvas-confetti": "^1.9.4",
"lodash-es": "^4.17.22",
"nanoid": "^5.1.6",
"react": "^19.2.0",
"react-canvas-confetti": "^2.0.7",
"react-confetti-boom": "^2.0.1",
"react-dom": "^19.2.0"
}
}