forked from happy-serial/mello-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.69 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.69 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
{
"name": "mello",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.9.0"
},
"workspaces": [
"src/*"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:ui": "vitest --ui --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@excalidraw/excalidraw": "^0.17.0",
"@lexical/clipboard": "0.13.1",
"@lexical/code": "0.13.1",
"@lexical/file": "0.13.1",
"@lexical/hashtag": "0.13.1",
"@lexical/link": "0.13.1",
"@lexical/list": "0.13.1",
"@lexical/mark": "0.13.1",
"@lexical/overflow": "0.13.1",
"@lexical/plain-text": "0.13.1",
"@lexical/react": "^0.13.1",
"@lexical/rich-text": "0.13.1",
"@lexical/selection": "0.13.1",
"@lexical/table": "0.13.1",
"@lexical/utils": "0.13.1",
"@react-spring/web": "^9.7.3",
"@react-three/drei": "^9.93.0",
"@react-three/fiber": "^8.15.13",
"@types/lodash-es": "^4.17.12",
"@types/prettier": "^2.7.3",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.11",
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"katex": "^0.15.2",
"lexical": "^0.13.1",
"lodash-es": "^4.17.21",
"marked": "^11.1.1",
"next": "14.0.4",
"next-auth": "^4.24.5",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-contenteditable": "^3.3.7",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-icons": "^4.12.0",
"react-spinners": "^0.13.8",
"react-svg": "^16.1.34",
"three": "^0.160.0",
"y-websocket": ">=1.3.x",
"zustand": "^4.4.7"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.7",
"@storybook/nextjs": "^7.6.7",
"@storybook/react": "^7.6.7",
"@storybook/test": "^7.6.7",
"@testing-library/react": "^14.1.2",
"@types/js-cookie": "^3.0.6",
"@types/katex": "^0.16.7",
"@types/marked": "^6.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/three": "^0.160.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.1.1",
"@vitest/ui": "^1.1.1",
"encoding": "^0.1.13",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^29.7.0",
"jsdom": "^23.0.1",
"storybook": "^7.6.7",
"storybook_vitest_addon": "^0.1.5",
"typescript": "^5",
"vitest": "^1.1.1"
}
}