-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "chatgpt",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"build-css": "npx tailwindcss -i ./src/assets/css/input.css -o ./src/assets/css/output.css --watch"
},
"dependencies": {
"@ionic/react": "^7.3.3",
"axios": "^1.5.0",
"classnames": "^2.3.2",
"framer-motion": "^10.16.4",
"gpt-tokenizer": "^2.1.2",
"immer": "^10.0.2",
"moment": "^2.29.4",
"openai": "^4.22.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-spinners": "^0.13.8",
"shortid": "^2.2.16",
"use-debounce": "^9.0.4",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0",
"zustand": "^4.4.1"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/shortid": "^0.0.30",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.0.0",
"eslint-config-react-app": "^7.0.1",
"tailwindcss": "^3.3.3",
"typescript": "^4.9.3",
"vite": "^4.2.0"
}
}