-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.47 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.47 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
{
"name": "mide",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently -n web,tauri \"yarn web:dev\" \"yarn tauri:dev\"",
"web:dev": "VITE_WEB=true vite",
"app:dev": "VITE_APP=true vite",
"tauri:dev": "cargo tauri dev",
"web:build": "VITE_WEB=true tsc && vite build",
"app:build": "VITE_APP=true tsc && vite build",
"tauri:build": "cargo tauri build",
"preview": "vite preview",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/lab": "^5.0.0-alpha.116",
"@mui/material": "^5.11.5",
"@octokit/core": "^4.2.0",
"@tauri-apps/api": "^1.2.0",
"@types/prismjs": "^1.26.0",
"classnames": "^2.3.2",
"immer": "^9.0.18",
"is-hotkey": "^0.2.0",
"nanoid": "^4.0.0",
"prismjs": "^1.29.0",
"re-resizable": "^6.9.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recoil": "^0.7.6",
"slate": "^0.87.0",
"slate-history": "^0.86.0",
"slate-packages": "https://github.com/dsvgit/slate#dev",
"slate-react": "^0.88.2"
},
"devDependencies": {
"@types/node": "^18.11.17",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.0.0",
"concurrently": "^7.6.0",
"gh-pages": "^4.0.0",
"prettier": "^2.8.1",
"rollup-plugin-visualizer": "^5.9.0",
"typescript": "^4.9.3",
"vite": "^4.0.0"
},
"packageManager": "yarn@3.3.1"
}