-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.38 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
{
"name": "xiaoxinbao",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -H 0.0.0.0",
"dev:https": "next dev -H 0.0.0.0 --experimental-https --experimental-https-key ./certificates/localhost-key.pem --experimental-https-cert ./certificates/localhost.pem",
"dev:backend": "cd backend && go run ./cmd/server",
"build": "next build",
"build:backend": "cd backend && go build -o ./bin/xiaoxinbao-backend ./cmd/server",
"start": "next start -H 0.0.0.0",
"test:backend": "cd backend && go test ./...",
"lint": "eslint",
"certs": "bash ./scripts/generate-certs.sh",
"env:encrypt": "dotenvx encrypt",
"env:decrypt": "dotenvx decrypt",
"env:keys": "dotenvx genexample"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"clsx": "^2.1.1",
"framer-motion": "^12.23.26",
"lucide-react": "^1.7.0",
"next": "16.2.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"tailwindcss": "^4",
"typescript": "^6"
},
"optionalDependencies": {
"lightningcss-linux-x64-gnu": "^1.30.2"
}
}