-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "the-council",
"version": "1.0.0",
"authors": [
"Aditya Poluri",
"Taryn Wou",
"Alan Wang",
"Alex Hernandez"
],
"license": "LGPL-3.0-or-later",
"private": true,
"engines": {
"node": ">=14"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/react": "^2.8.1",
"@ducanh2912/next-pwa": "^9.4.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@react-spring/core": "^9.7.3",
"@react-spring/three": "^9.7.3",
"@react-three/drei": "^9.80.2",
"@react-three/fiber": "^8.13.6",
"@splinetool/loader": "^0.9.455",
"@splinetool/r3f-spline": "^1.0.2",
"@supabase/auth-helpers-nextjs": "^0.8.1",
"@supabase/auth-ui-react": "^0.4.5",
"@supabase/auth-ui-shared": "^0.1.7",
"@supabase/supabase-js": "^2.37.0",
"@types/three": "^0.156.0",
"framer-motion": "^10.16.4",
"glsl-random": "^0.0.5",
"kofi-button": "^1.1.1",
"next": "^13.4.13",
"openai": "^4.11.0",
"postcss-nesting": "^12.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-textarea-autosize": "^8.5.3",
"three": "^0.154.0",
"three-stdlib": "^2.24.2",
"tunnel-rat": "^0.1.2",
"yarn": "^1.22.19"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.13",
"@types/node": "^20.6.3",
"@types/react": "^18.2.22",
"autoprefixer": "^10.4.14",
"encoding": "^0.1.13",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.13",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"file-loader": "^6.2.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"postcss": "^8.4.31",
"prettier": "^3.0.1",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"url-loader": "^4.1.1"
},
"scripts": {
"lint": "next lint --fix --dir app",
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"prettier": "npx prettier --list-different \"./src/**/*.{ts,tsx,md}\" \"./app/**/*.{ts,tsx,md}\"\""
}
}