-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.96 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
89
90
{
"name": "osnova",
"version": "0.1.0",
"description": "Osnova — git-native collaboration platform (walking skeleton)",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev",
"devsafe": "rm -rf .next && cross-env NODE_OPTIONS=--no-deprecation next dev",
"build": "cross-env NODE_OPTIONS=\"--no-deprecation --max-old-space-size=8000\" next build",
"start": "cross-env NODE_OPTIONS=--no-deprecation next start",
"generate:types": "cross-env NODE_OPTIONS=--no-deprecation payload generate:types",
"generate:importmap": "cross-env NODE_OPTIONS=--no-deprecation payload generate:importmap",
"payload": "cross-env NODE_OPTIONS=--no-deprecation payload",
"seed": "cross-env NODE_OPTIONS=--no-deprecation node --env-file=.env --import tsx src/seed.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.104.1",
"@payloadcms/db-postgres": "3.85.1",
"@payloadcms/next": "3.85.1",
"@payloadcms/plugin-multi-tenant": "3.85.1",
"@payloadcms/richtext-lexical": "3.85.1",
"@payloadcms/ui": "3.85.1",
"@radix-ui/react-slot": "^1.2.5",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"@react-three/postprocessing": "^3.0.4",
"@tiptap/extension-image": "^2.27.2",
"@tiptap/extension-link": "^2.27.2",
"@tiptap/extension-placeholder": "^2.27.2",
"@tiptap/extension-task-item": "^2.27.2",
"@tiptap/extension-task-list": "^2.27.2",
"@tiptap/pm": "^2.27.2",
"@tiptap/react": "^2.27.2",
"@tiptap/starter-kit": "^2.27.2",
"@types/nodemailer": "^8.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cross-env": "7.0.3",
"graphql": "^16.8.1",
"i18next": "^23.16.8",
"jose": "^5.9.6",
"lucide-react": "^1.18.0",
"mermaid": "^11.4.1",
"next": "^16.2.9",
"next-themes": "^0.4.6",
"nodemailer": "^8.0.11",
"openai": "^6.42.0",
"openid-client": "^6.1.7",
"payload": "3.85.1",
"picomatch": "^4.0.2",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-i18next": "^15.7.4",
"recharts": "^3.8.1",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"sharp": "0.35.1",
"simple-git": "^3.27.0",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.184.0",
"tiptap-markdown": "^0.8.10",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/node": "^25.9.3",
"@types/picomatch": "^4.0.3",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@types/three": "^0.184.1",
"autoprefixer": "^10.5.0",
"playwright": "1.60",
"postcss": "^8.5.15",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.2.6"
},
"engines": {
"node": ">=20.9.0"
}
}