-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 931 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 931 Bytes
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
{
"name": "random",
"type": "module",
"private": true,
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:server": "air",
"dev:ui": "vite",
"build": "npm-run-all --serial build:ui build:server",
"build:server": "CGO_ENABLED=0 go build",
"build:ui": "vite build",
"test": "go test"
},
"dependencies": {
"@preact/signals": "^1.3.0",
"preact": "^10.24.0",
"preact-iso": "^2.6.3",
"preact-render-to-string": "^6.5.11"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@preact/preset-vite": "^2.9.0",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.10",
"eslint": "^8.57.1",
"eslint-config-preact": "^1.4.0",
"eslint-plugin-react": "^7.36.1",
"globals": "^15.9.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.11",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0",
"vite": "^5.3.3"
}
}