-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.61 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
49
50
51
{
"name": "shadcn-chatbot-kit",
"version": "0.0.1",
"private": true,
"type": "module",
"workspaces": [
"apps/*"
],
"scripts": {
"build": "turbo run build",
"build:registry": "pnpm --filter=www build:registry && pnpm format:write -- --loglevel silent",
"registry:build": "pnpm --filter=www build:registry && pnpm format:write -- --loglevel silent",
"registry:capture": "pnpm --filter=www registry:capture",
"dev": "turbo run dev --parallel",
"docs:build": "pnpm --filter=www build:docs",
"www:dev": "pnpm --filter=www dev",
"www:build": "pnpm --filter=www build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"preview": "turbo run preview",
"typecheck": "turbo run typecheck",
"format:write": "turbo run format:write",
"format:check": "turbo run format:check",
"check": "turbo lint typecheck format:check"
},
"dependencies": {
"@commitlint/config-conventional": "^17.6.3",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@typescript-eslint/parser": "^5.59.7",
"autoprefixer": "^10.4.14",
"eslint": "^8.41.0",
"eslint-config-next": "13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^1.9.9",
"eslint-plugin-tailwindcss": "3.13.1",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"puppeteer": "^23.6.0",
"tailwindcss": "3.4.6",
"tailwindcss-animate": "^1.0.5",
"tsx": "^4.1.4",
"turbo": "^1.9.9",
"vite": "^5.4.1",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^2.0.5"
},
"devDependencies": {
"@types/node": "^20.11.27",
"typescript": "^5.5.3"
}
}