-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.17 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
{
"name": "kiro",
"author": {
"name": "Charlie Cohen",
"email": "[email protected]",
"github": "linzell"
},
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"linter": "tsc && eslint --ext .ts,.tsx --ignore-path .gitignore --fix src",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fireproof/core": "^0.18.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.11",
"@remirror/core": "^2.0.19",
"@remirror/extension-annotation": "^2.0.16",
"@remirror/extension-find": "^0.1.6",
"@remirror/extension-mention-atom": "^2.0.17",
"@remirror/extension-react-tables": "^2.2.19",
"@remirror/extension-yjs": "^3.0.15",
"@remirror/pm": "^2.0.9",
"@remirror/react": "^2.0.35",
"@remirror/react-editors": "^1.0.41",
"@remirror/styles": "^2.0.7",
"@tauri-apps/api": "^1.6.0",
"autoprefixer": "^10.4.19",
"eslint-plugin-react-refresh": "^0.4.7",
"i18next": "^23.15.0",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.5.1",
"moment": "^2.30.1",
"postcss": "^8.4.41",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.1",
"react-redux": "^8.1.2",
"react-router-dom": "^6.23.1",
"refractor": "^4.8.1",
"remirror": "^2.0.39",
"svgmoji": "^3.2.0",
"uuid": "^9.0.1",
"y-webrtc": "^10.3.0",
"yjs": "^13.6.19"
},
"devDependencies": {
"@fireproof/core": "^0.18.0",
"@reduxjs/toolkit": "^1.9.7",
"@tauri-apps/cli": "^1.5.14",
"@types/node": "^22.2.0",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"vite": "^4.5.5"
}
}