-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.26 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
91
92
93
94
95
96
97
98
99
100
{
"name": "year_wheel_poc",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"postbuild": "node scripts/prerender.js",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives",
"preview": "vite preview",
"copy:wheel": "node scripts/copy_wheel.js",
"generate:icons": "node scripts/generate-app-icons.js",
"cy:open": "cypress open --e2e -b chrome",
"cy:run": "cypress run",
"cy:open:component": "cypress open --component",
"cy:run:component": "cypress run --component",
"cy:dev": "start-server-and-test dev http://localhost:5173 cy:open",
"cy:test": "start-server-and-test dev http://localhost:5173 cy:run",
"cy:run:spec": "cypress run --spec $CYPRESS_SPEC",
"cy:test:spec": "start-server-and-test dev http://localhost:5173 cy:run:spec"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.2",
"@floating-ui/dom": "^1.7.4",
"@gocapsule/column-extension": "^1.0.0-beta-3",
"@react-email/components": "^1.0.3",
"@react-email/render": "^2.0.1",
"@stripe/stripe-js": "^8.6.0",
"@supabase/supabase-js": "^2.89.0",
"@tiptap/core": "^3.15.3",
"@tiptap/extension-color": "^3.15.3",
"@tiptap/extension-highlight": "^3.15.3",
"@tiptap/extension-text-align": "^3.15.3",
"@tiptap/extension-text-style": "^3.15.3",
"@tiptap/extension-underline": "^3.15.3",
"@tiptap/pm": "^3.15.3",
"@tiptap/react": "^3.15.3",
"@tiptap/starter-kit": "^3.15.3",
"ai": "^6.0.6",
"canvas2svg": "^1.0.16",
"chart.js": "^4.5.1",
"d3": "^7.8.5",
"date-fns": "^4.1.0",
"dompurify": "^3.3.1",
"driver.js": "^1.4.0",
"fuse.js": "^7.1.0",
"handlebars": "^4.7.8",
"html-react-parser": "^5.2.11",
"html2canvas": "^1.4.1",
"html2pdf.js": "^0.14.0",
"i18next": "^25.7.3",
"i18next-browser-languagedetector": "^8.2.0",
"immer": "^11.1.3",
"jspdf": "^4.0.0",
"lucide-react": "^0.562.0",
"marked": "^17.0.1",
"prismjs": "^1.30.0",
"react": "19.2.3",
"react-chartjs-2": "^5.3.1",
"react-dom": "19.2.3",
"react-i18next": "^16.5.1",
"react-markdown": "^10.1.0",
"react-mentions": "^4.4.10",
"react-router-dom": "^7.11.0",
"react-simple-code-editor": "^0.14.1",
"remark-gfm": "^4.0.1",
"tiptap-extension-global-drag-handle": "^0.1.18",
"xlsx": "^0.18.5",
"zod": "^4.3.5"
},
"devDependencies": {
"@faker-js/faker": "^10.2.0",
"@tailwindcss/typography": "^0.5.19",
"@types/dompurify": "^3.2.0",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"autoprefixer": "^10.4.23",
"baseline-browser-mapping": "^2.9.11",
"cypress": "^15.8.1",
"cypress-recurse": "^1.37.1",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"odiff-bin": "^4.3.2",
"postcss": "^8.5.6",
"rollup-plugin-visualizer": "^6.0.5",
"sass": "^1.97.1",
"sharp": "^0.34.5",
"start-server-and-test": "^2.1.3",
"superstatic": "^10.0.0",
"tailwindcss": "3.4.17",
"terser": "^5.44.1",
"vite": "^7.3.0",
"vite-plugin-inline-css-modules": "^0.0.8"
}
}