forked from dalindev/XNOHub.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.83 KB
/
package.json
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
{
"private": true,
"license": "MIT",
"sideEffects": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ts": "tsc --noEmit",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"clean": "rm -rf .next && pnpm store prune && next telemetry disable && rm -rf .eslintcache",
"clean:full": "pnpm clean && rm -rf node_modules && pnpm store prune",
"prepare": "pnpm run ts && pnpm run lint"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@planetscale/database": "^1.7.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@react-three/drei": "^9.109.2",
"@react-three/fiber": "^8.16.8",
"@tremor/react": "^3.2.6",
"@vercel/analytics": "^1.0.1",
"autoprefixer": "^10.4.14",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"d3-geo": "^3.1.0",
"js-cookie": "^3.0.5",
"lucide-react": "^0.414.0",
"next": "14.2.5",
"prop-types": "^15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"rxjs": "^7.8.1",
"server-only": "^0.0.1",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"three-geojson-geometry": "^1.3.1"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
},
"devDependencies": {
"@types/js-cookie": "^3.0.3",
"@types/node": "20.3.0",
"@types/react": "18.2.11",
"@types/react-dom": "18.2.4",
"@types/three": "^0.155.0",
"eslint": "8.42.0",
"eslint-config-next": "14.2.5",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.4",
"typescript": "5.1.3"
}
}