-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.68 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.68 KB
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
{
"name": "@captain/cli-web",
"private": true,
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext .ts,tsx --ignore-path .gitignore src",
"lint:fix": "eslint --ext .ts,tsx --ignore-path .gitignore --fix src",
"format": "prettier --write --plugin-search-dir=. src/**/*.{cjs,mjs,ts,tsx,md,json} --ignore-path ../.gitignore",
"format:check": "prettier --check --plugin-search-dir=. src/**/*.{cjs,mjs,ts,tsx,md,json} --ignore-path ../.gitignore"
},
"dependencies": {
"@captain/logger": "workspace:*",
"@headlessui/react": "^1.7.8",
"@heroicons/react": "^2.0.12",
"@hookform/resolvers": "^2.9.10",
"@tanstack/react-query": "^4.7.2",
"@tippyjs/react": "^4.2.6",
"@trpc/client": "10.9.0",
"@trpc/react-query": "10.9.0",
"@trpc/server": "10.9.0",
"jotai": "^1.13.1",
"prism-react-renderer": "^1.3.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.0",
"react-hot-toast": "^2.4.0",
"superjson": "^1.12.1",
"tailwind-merge": "^1.12.0",
"wouter": "^2.10.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@captain/cli-core": "*",
"@captain/tailwind-config": "*",
"@captain/tsconfig": "workspace:*",
"@tailwindcss/forms": "^0.5.3",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.7",
"eslint": "^7.32.0",
"eslint-config-custom": "workspace:*",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.8",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vite-plugin-rewrite-all": "^1.0.1"
}
}