-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.15 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
59
60
61
62
63
64
65
{
"name": "endlesspixel",
"version": "3.0.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "NODE_OPTIONS=--use-system-ca next dev",
"dev-https": "NODE_OPTIONS=--use-system-ca next dev --experimental-https --experimental-https-key ./cert/localhost-key.pem --experimental-https-cert ./cert/localhost.pem",
"lint": "eslint app components lib hooks --max-warnings=0",
"lint:fix": "eslint app components lib hooks --fix",
"format": "prettier --write \"{app,components,lib,hooks}/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"{app,components,lib,hooks}/**/*.{ts,tsx,css}\"",
"start": "next start"
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-label": "^2.1.15",
"@radix-ui/react-separator": "^1.1.15",
"@radix-ui/react-slot": "^1.3.3",
"@radix-ui/react-switch": "^1.3.7",
"@radix-ui/react-tabs": "^1.1.21",
"@radix-ui/react-toast": "^1.2.23",
"@radix-ui/react-toggle": "^1.1.18",
"@radix-ui/react-tooltip": "^1.2.16",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"framer-motion": "^13.4.0",
"geist": "^1.7.1",
"highlight.js": "^11.12.0",
"lucide-react": "^1.47.0",
"next": "^16.3.5",
"next-themes": "^0.4.6",
"react": "^19.3.0",
"react-dom": "^19.3.0",
"react-markdown": "^10.1.0",
"react-photo-view": "^1.2.7",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"skinview3d": "^3.4.2",
"tailwind-merge": "^3.7.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^26.6.2",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"eslint-config-next": "^16.3.5",
"postcss": "^8.5.26",
"prettier": "^3.9.8",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.3.0",
"typescript": "^7.0.2"
},
"allowScripts": {
"sharp@0.34.5": true,
"unrs-resolver@1.12.2": true
}
}