-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.62 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
{
"name": "code-life-balance",
"version": "1.2.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alihd-tech/CodeLifeBalance.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test:core": "node --test packages/core/index.test.mjs",
"cli": "node cli/index.mjs",
"test:report": "node --test packages/report/index.test.mjs",
"test": "node --test packages/core/index.test.mjs packages/report/index.test.mjs",
"typecheck": "tsc --noEmit",
"check": "pnpm test && pnpm typecheck && pnpm build && pnpm test:npm-cli",
"build:npm-cli": "node scripts/build-npm-cli.mjs",
"test:npm-cli": "pnpm build:npm-cli && node dist/npm/cli/index.mjs --help && npm pack --dry-run ./dist/npm"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@radix-ui/react-icons": "^1.3.2",
"@vercel/analytics": "1.6.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"iron-session": "^8.0.4",
"lucide-react": "^1.16.0",
"next": "16.2.6",
"react": "^19",
"react-dom": "^19",
"recharts": "^3.8.0",
"shadcn": "^4.8.0",
"swr": "^2.5.0",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"postcss": "^8.5",
"tailwindcss": "^4.3.3",
"typescript": "5.7.3"
},
"pnpm": {
"overrides": {
"hono": "4.12.25"
}
},
"bin": {
"code-life-balance": "./cli/index.mjs"
}
}