-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "blocky-frontend",
"private": false,
"version": "0.2.1",
"scripts": {
"predev": "docker compose up -d",
"dev": "vite --host",
"down": "docker compose down",
"up": "docker compose up",
"build": "tsc && vite build",
"change": "pnpm changeset",
"release": "pnpm changeset version",
"start": "vite preview",
"image": "docker build -t mozart409/blocky-frontend:latest .",
"commit": "cz"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-hot-toast": "^2.4.1",
"react-query": "^3.39.3",
"redaxios": "^0.5.1",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.12.11",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"lefthook": "^1.6.10",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^4.5.5"
}
}