-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "otio-website",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"add-integration": "node ./scripts/create-integration.mjs",
"dev": "next dev",
"dev:setup": ". ./scripts/install-dev-cert.sh && . ./scripts/setup-env-file.sh",
"dev:https": "yarn dev --port ${PORT:-443} --experimental-https --experimental-https-key ./certs/key.pem --experimental-https-cert ./certs/cert.pem",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@algolia/client-search": "^5.46.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@docsearch/css": "^4.3.2",
"@docsearch/js": "4.3.2",
"@docsearch/react": "^4.3.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-visually-hidden": "^1.2.4",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.1.1",
"date-fns": "^4.1.0",
"inquirer": "^12.10.0",
"lucide-react": "^0.552.0",
"motion": "^12.23.26",
"next": "16.0.10",
"next-themes": "^0.4.6",
"papaparse": "^5.5.3",
"radix-ui": "^1.4.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-draggable": "^4.5.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"react-timecode": "^1.3.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-raw": "^7.0.0",
"rehype-react": "^8.0.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"search-insights": "^2.17.2",
"smpte-timecode": "^1.3.6",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^24.10.0",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/smpte-timecode": "^1.2.5",
"eslint": "^9.39.2",
"eslint-config-next": "16.0.10",
"node-fetch": "^3.3.2",
"postcss": "^8.5.6",
"tailwindcss": "4.1.18",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"resolutions": {
"string-width": "4.2.3"
}
}