-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.29 KB
/
package.json
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
{
"name": "iron-link-react",
"private": true,
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"tsc": "tsc -b",
"build": "npm run tsc && vitest --run && vite build",
"lint": "eslint .",
"format": "eslint . --fix && prettier . --write",
"preview": "vite preview",
"test": "vitest",
"test:watch": "vitest --watch",
"extract:i18n": "i18next 'src/**/*.{ts,tsx}' [-oc]",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"supabase:gen-types": "supabase gen types typescript --local > ./src/types/supabase-generated.type.ts",
"supabase:create-db-script": "supabase db diff -f changes",
"supabase:create-empty-script": "supabase migration new changes",
"supabase:serve-functions": "supabase functions serve"
},
"dependencies": {
"@datasworn/core": "^0.1.0-0",
"@datasworn/ironsworn-classic": "^0.1.0-0",
"@datasworn/ironsworn-classic-delve": "^0.1.0-0",
"@datasworn/starforged": "^0.1.0-0",
"@datasworn/sundered-isles": "^0.1.0-0",
"@dnd-kit/sortable": "^8.0.0",
"@fontsource-variable/inter": "^5.1.0",
"@fontsource/barlow-condensed": "^5.1.0",
"@mui/icons-material": "^6.1.0",
"@mui/material": "^6.1.0",
"@mui/material-pigment-css": "^6.1.0",
"@mui/x-tree-view": "^7.22.1",
"@supabase/supabase-js": "^2.47.7",
"@tiptap/extension-collaboration": "^2.11.5",
"@tiptap/extension-collaboration-cursor": "^2.9.1",
"@tiptap/extension-image": "^2.11.2",
"@tiptap/extension-link": "^2.9.1",
"@tiptap/extension-mention": "^2.11.3",
"@tiptap/extension-placeholder": "^2.9.1",
"@tiptap/pm": "^2.9.1",
"@tiptap/react": "^2.11.5",
"@tiptap/starter-kit": "^2.9.1",
"@tiptap/suggestion": "^2.11.3",
"buffer": "^6.0.3",
"fast-deep-equal": "^3.1.3",
"i18next": "^23.15.1",
"immer": "^10.1.1",
"material-ui-confirm": "^3.0.16",
"motion": "^11.17.0",
"notistack": "^3.0.1",
"posthog-js": "^1.210.2",
"re-resizable": "^6.10.3",
"react": "^18.3.1",
"react-avatar-editor": "^13.0.2",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.53.0",
"react-i18next": "^15.0.1",
"react-markdown": "^9.0.1",
"react-router": "^7.1.3",
"remark-gfm": "^4.0.0",
"scheduler": "^0.23.2",
"use-context-selector": "^2.0.0",
"use-sync-external-store": "^1.2.2",
"uuid": "^11.0.3",
"y-webrtc": "^10.3.0",
"yjs": "^13.6.20",
"zustand": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.3.5",
"@types/react-avatar-editor": "^13.0.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/browser": "^2.1.1",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"i18next-parser": "^9.0.2",
"jsdom": "^25.0.0",
"playwright": "^1.47.1",
"prettier": "^3.3.3",
"supabase": "^2.2.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.1"
}
}