-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 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
{
"name": "macos-web",
"version": "0.2.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"build:static": "next build",
"build:cloudflare": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write . --ignore-unknown",
"format:check": "prettier --check . --ignore-unknown",
"type-check": "tsc --noEmit",
"clean": "rm -rf .next out node_modules/.cache",
"preview": "npx serve out",
"pages:dev": "wrangler pages dev out",
"pages:deploy": "npm run build && wrangler pages deploy out"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-slot": "^1.2.3",
"chart.js": "^4.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.3",
"lucide-react": "^0.525.0",
"next": "15.3.8",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.0.0",
"react-rnd": "^10.5.2",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@babel/parser": "^7.28.0",
"@babel/traverse": "^7.28.0",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4",
"typescript": "^5",
"wrangler": "^3.109.0"
}
}