-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.79 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "resume-with-openai",
"version": "0.1.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "pnpm run embeddings && next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\"",
"embeddings": "tsx lib/generate-embeddings.ts",
"embeddings:refresh": "tsx lib/generate-embeddings.ts --refresh"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100,
"endOfLine": "lf",
"sqlKeywordCase": "lower"
},
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@react-spring/three": "^9.7.4",
"@react-three/cannon": "^6.6.0",
"@react-three/drei": "^9.110.0",
"@react-three/fiber": "^8.17.5",
"@react-three/xr": "^5.7.1",
"@supabase/ssr": "^0.0.9",
"@supabase/supabase-js": "^2.45.1",
"@types/node": "18.15.10",
"@types/react": "18.0.30",
"@types/react-dom": "18.0.11",
"ai": "^2.2.37",
"axios": "^1.7.4",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"cmdk": "^0.2.1",
"common-tags": "^1.8.2",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"github-slugger": "^2.0.0",
"gpt3-tokenizer": "^1.1.5",
"gray-matter": "^4.0.3",
"gsap": "^3.12.5",
"hover.css": "^2.3.2",
"lucide-react": "^0.128.0",
"mdast": "^3.0.0",
"mdast-util-from-markdown": "^1.3.1",
"mdast-util-mdx": "^2.0.1",
"mdast-util-to-markdown": "^1.5.0",
"mdast-util-to-string": "^3.2.0",
"micromark-extension-mdxjs": "^1.0.1",
"next": "13.4.12",
"next-mdx-remote": "^4.4.1",
"next-sitemap": "^4.2.3",
"openai": "^3.3.0",
"openai-edge": "^1.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.7",
"sharp": "^0.32.6",
"styled-components": "^6.1.12",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.154.0",
"typescript": "^5.5.4",
"unist-builder": "^3.0.1",
"unist-util-filter": "^4.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@tweenjs/tween.js": "^21.1.1",
"@types/common-tags": "^1.8.4",
"@types/estree": "^1.0.5",
"@types/mdast": "^3.0.15",
"@types/three": "^0.154.0",
"@types/yargs": "^17.0.33",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.5",
"postcss": "^8.4.41",
"postcss-nesting": "^12.1.5",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.10",
"tsx": "^4.17.0"
},
"packageManager": "[email protected]+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247"
}