-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "sketchkaro",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"test": "cd packages/test && bun test",
"test:ws": "cd packages/test && bun test:ws",
"test:http": "cd packages/test && bun test:http",
"test:watch": "cd packages/test && bun test:watch"
},
"devDependencies": {
"@emnapi/core": "^1.4.3",
"prettier": "^3.5.3",
"turbo": "^2.5.4",
"typescript": "5.8.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@emnapi/wasi-threads": "^1.0.2",
"@types/cors": "^2.8.19",
"@types/jsonwebtoken": "^9.0.10",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"framer-motion": "^12.38.0",
"lucide-react": "^1.14.0",
"react-hot-toast": "^2.5.2",
"tailwind-merge": "^3.5.0"
}
}