-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) Β· 2.87 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
94
95
96
97
{
"name": "pictocode",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": {
"name": "arshad yaseen",
"url": "https://twitter.com/arshadyaseeen"
},
"browser": {
"crypto": false
},
"scripts": {
"dev": "next dev",
"turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"preview": "next build && next start",
"postinstall": "npx puppeteer browsers install chrome"
},
"dependencies": {
"@babel/standalone": "^7.23.4",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@t3-oss/env-nextjs": "^0.7.1",
"@vercel/analytics": "^1.1.1",
"@vercel/kv": "^1.0.0",
"ai": "^2.2.25",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"copy-to-clipboard": "^3.3.3",
"cryptr": "^6.3.0",
"framer-motion": "^10.16.5",
"geist": "^1.1.0",
"highlight.js": "^11.9.0",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"lucide-react": "^0.292.0",
"next": "14.0.3",
"next-themes": "^0.2.1",
"openai": "^4.20.0",
"prettier-plugin-tailwindcss": "^0.5.9",
"pretty-quick": "^3.1.3",
"re-resizable": "^6.9.11",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-resizable-panels": "^1.0.4",
"react-textarea-autosize": "^8.5.3",
"react-wrap-balancer": "^1.1.0",
"server-only": "^0.0.1",
"sonner": "^1.2.2",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^2.9.1",
"vaul": "^0.8.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/babel__standalone": "^7.1.7",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"lint-staged": "^15.1.0",
"postcss": "^8",
"prettier": "^3.1.1",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}