-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "CodeBot",
"description":"Build software with AI",
"license": "MIT",
"version": "0.1.0",
"homepage": ".",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com:VertuaLabs/CodeBot_web.git"
},
"scripts": {
"docker:dev": "docker-compose -f dev/docker-compose.dev.yml up --build",
"docker:prod": "docker-compose -f docker-compose.yml up --build",
"docker:build": "docker build -t estill01/codebot_web_prod:latest .",
"docker:push": "docker push estill01/codebot_web_prod:latest",
"__docker:commit": "docker commit codebot_web_prod estill01/codebot_web_prod:latest",
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@metamask/sdk": "^0.1.0",
"@radix-ui/react-icons": "^1.2.0",
"@tanstack/query-core": "^4.24.6",
"dotenv": "^16.0.3",
"jotai": "^2.0.2",
"jotai-tanstack-query": "^0.5.0",
"lowlight": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.1",
"react-textarea-autosize": "^8.4.0",
"spinners-react": "^1.0.7",
"vite-plugin-svgr": "^2.4.0",
"xterm-addon-fit": "^0.7.0",
"xterm-for-react-18": "^1.0.28"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.6",
"vite": "^4.1.0"
}
}