-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.58 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
{
"name": "@dust-mail/web",
"displayName": "Dust Mail Client",
"description": "A simple and fast mail client",
"version": "1.0.2",
"repository": {
"url": "https://github.com/Guusvanmeerveld/Dust-Mail"
},
"homepage": "https://github.com/Guusvanmeerveld/Dust-Mail",
"author": {
"name": "Guus van Meerveld",
"url": "https://guusvanmeerveld.dev",
"email": "contact@guusvanmeerveld.dev"
},
"contributors": [],
"packageManager": "pnpm@8.6.0",
"size-limit": [
{
"path": "dist/assets/*.js",
"limit": "500 kB"
}
],
"license": "MIT",
"scripts": {
"dev": "vite",
"size": "size-limit",
"lint": "eslint src",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"commit": "cz",
"build": "tsc && vite build",
"test": "vitest --passWithNoTests",
"coverage": "vitest run --coverage",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@fontsource/roboto": "^4.5.7",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.0",
"@mui/styled-engine": "^5.8.0",
"@tauri-apps/api": "^1.2.0",
"js-md5": "^0.7.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.3",
"react-query": "^3.39.1",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"slate": "^0.81.1",
"slate-react": "^0.81.0",
"use-debounce": "^9.0.4",
"use-local-storage-state": "^17.2.0",
"zod": "^3.21.4",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx-source": "^7.18.6",
"@rollup/plugin-alias": "^3.1.9",
"@size-limit/preset-app": "^7.0.8",
"@tauri-apps/cli": "^1.3.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/jest": "^28.1.4",
"@types/js-md5": "^0.7.0",
"@types/node": "^17.0.35",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@vitejs/plugin-react": "^2.0.0",
"c8": "^7.12.0",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.20.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.8.1",
"size-limit": "^7.0.8",
"typescript": "^4.5.4",
"vite": "^3.0.3",
"vite-plugin-pwa": "^0.12.2",
"vite-tsconfig-paths": "^3.4.1",
"vitest": "^0.20.3",
"workbox-window": "^6.5.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}