-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.7 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.7 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "haven-web",
"version": "0.4.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev:ts": "yarn dev & yarn ts:watch",
"ts": "tsc --noEmit --incremental",
"ts:watch": "yarn ts --watch",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint:fix": "eslint --fix",
"test": "cypress",
"see-cy-coverage": "open ./cypress-coverage/lcov-report/index.html"
},
"dependencies": {
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@juggle/resize-observer": "^3.4.0",
"@react-spring/web": "^9.5.5",
"@reduxjs/toolkit": "^1.9.1",
"@vitejs/plugin-react": "^4.3.4",
"@windmillcode/quill-emoji": "^2.0.3000",
"body-scroll-lock": "^4.0.0-beta.0",
"classnames": "^2.3.1",
"contrast-color": "^1.0.1",
"copy-to-clipboard": "^3.3.2",
"date-fns": "^4.1.0",
"dayjs": "^1.11.9",
"delay": "^5.0.0",
"dexie": "^3.2.2",
"dompurify": "^2.4.0",
"file-saver": "^2.0.5",
"fuse.js": "^6.6.2",
"html-to-text": "^9.0.4",
"i18next": "^22.4.11",
"i18next-browser-languagedetector": "^7.0.1",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"lucide-react": "^0.453.0",
"pako": "^2.1.0",
"parchment": "^2.0.1",
"quill": "^2.0.3",
"quill-auto-detect-url": "^1.0.0-alpha.1",
"quill-mention": "6.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "^3.1.4",
"react-helmet-async": "^2.0.5",
"react-hot-toast": "^2.4.1",
"react-i18next": "^12.2.0",
"react-multiline-clamp": "^2.0.0",
"react-redux": "^8.0.5",
"react-router-dom": "^7.1.5",
"react-tailwindcss-select": "^1.6.0",
"react-tooltip": "^5.7.4",
"react-use-measure": "^2.1.1",
"redux": "^4.2.0",
"ts.data.json": "^2.2.0",
"use-sound": "^4.0.3",
"usehooks-ts": "^3.1.0",
"uuid": "^9.0.0",
"vite": "^6.0.11",
"xxdk-wasm": "^0.3.21"
},
"devDependencies": {
"@cypress/code-coverage": "^3.13.4",
"@cypress/webpack-preprocessor": "^6.0.2",
"@testing-library/cypress": "^10.0.2",
"@types/contrast-color": "^1.0.0",
"@types/dompurify": "^2.3.4",
"@types/draftjs-to-html": "^0.8.1",
"@types/emoji-mart": "^3.0.14",
"@types/file-saver": "^2.0.5",
"@types/html-to-text": "^9.0.0",
"@types/js-cookie": "^3.0.2",
"@types/lodash": "^4.14.185",
"@types/node": "18.7.14",
"@types/pako": "^2.0.3",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/react-draft-wysiwyg": "^1.13.4",
"@types/testing-library__cypress": "^5.0.9",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^latest",
"@typescript-eslint/parser": "^latest",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"babel-plugin-istanbul": "^6.1.1",
"cypress": "^13.15.1",
"eslint": "^latest",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-newlines": "^1.3.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^latest",
"eslint-plugin-react-hooks": "^latest",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"netlify-cli": "^19.1.5",
"nyc": "^15.1.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.4.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.7.3",
"vite-plugin-eslint": "^1.8.1"
},
"trustedDependencies": [
"@swc/core",
"core-js-pure",
"cypress",
"esbuild"
]
}