-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.86 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "kitt2",
"version": "0.2.0",
"private": true,
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"dev:all": "concurrently --names 'WEB,SERVER' -c 'auto' \"pnpm dev\" \"python my_agent.py start\"",
"format:prettier": "prettier --write \"**/*.{js,ts,tsx}\"",
"pre-commit": "lint-staged"
},
"dependencies": {
"@livekit/components-react": "1.5.1",
"@livekit/components-styles": "1.0.8",
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"framer-motion": "^11.0.5",
"js-yaml": "^4.1.0",
"livekit-client": "1.15.8",
"livekit-server-sdk": "1.2.7",
"next": "14.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^2.2.0",
"tinykeys": "^2.1.0"
},
"devDependencies": {
"@headlessui/tailwindcss": "^0.2.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@taplo/cli": "^0.5.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "20.10.8",
"@types/react": "18.2.47",
"@types/react-dom": "18.2.18",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"env-cmd": "^10.1.0",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.3.3"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --ext jsx,ts,tsx --quiet --fix --",
"prettier --write"
],
"*.{md,mdx,yml}": [
"prettier --write"
]
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": "8"
}
}