-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 905 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 905 Bytes
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
{
"name": "draw-a-ui",
"version": "0.1.1",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint": "eslint . --fix"
},
"dependencies": {
"@tldraw/tldraw": "2.0.0-alpha.17",
"canvas-size": "^1.2.6",
"classnames": "^2.3.2",
"next": "14.0.1",
"openai": "^4.19.0",
"prismjs": "^1.29.0",
"react": "^18",
"react-dom": "^18",
"zustand": "^4.4.6"
},
"devDependencies": {
"@antfu/eslint-config": "^2.0.0",
"@types/canvas-size": "^1.2.1",
"@types/node": "^20",
"@types/prismjs": "^1.26.3",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.1",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}