-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1 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
{
"name": "my-turborepo",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"convert-videos": "node apps/web/video-converter/convertVideos.js",
"rename-files": "node apps/web/rename/rename.js",
"generate-embeddings": "pnpm --filter web generate-embeddings"
},
"devDependencies": {
"prettier": "^3.2.5",
"stripe-cli": "^0.1.0",
"turbo": "^2.0.7",
"typescript": "^5.4.5"
},
"packageManager": "pnpm@8.15.6",
"engines": {
"node": ">=18"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-radio-group": "^1.2.3",
"@tanstack/react-table": "^8.21.2",
"emblor": "^1.4.7",
"jotai": "2.8.0",
"next": "^15.2.1",
"recharts": "^2.15.1"
},
"pnpm": {
"overrides": {
"react-is": "19.1.0",
"@smithy/types": "4.2.0",
"@smithy/protocol-http": "5.1.0"
}
},
"resolutions": {
"jotai": "2.8.0"
}
}