-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.52 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
{
"name": "notes-together",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"test": "vitest",
"generate-pwa-assets": "pwa-assets-generator --preset minimal public/generated-icons/NotesTogether-Icon.svg",
"build": "vite build",
"betatest": "surge dist https://notes-together.surge.sh/; true",
"prebuild": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview --host 0.0.0.0",
"deploy": "scp -p -r -o PreferredAuthentications=publickey,password ~/git/notes-together/dist/* root@hominidsoftware.com:/var/www/notestogether/"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^4.5.3",
"@mui/icons-material": "^5.14.16",
"@mui/material": "^5.14.17",
"canvas": "^2.11.2",
"escape-html": "^1.0.3",
"htmlparser2": "^3.10.1",
"is-hotkey": "^0.2.0",
"mdast-util-from-markdown": "^1.3.0",
"mdast-util-gfm-strikethrough": "^1.0.3",
"mdast-util-gfm-table": "^1.0.7",
"mdast-util-gfm-task-list-item": "^1.0.2",
"micromark-extension-gfm-strikethrough": "^1.0.5",
"micromark-extension-gfm-table": "^1.0.5",
"micromark-extension-gfm-task-list-item": "^1.0.4",
"notistack": "^3.0.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-router-dom": "^6.16.0",
"react-transition-group": "^4.4.5",
"remotestorage-widget": "^1.5.5",
"remotestoragejs": "github:remotestorage/remotestorage.js#a189529",
"slate": "^0.101.4",
"slate-history": "^0.100.0",
"slate-hyperscript": "^0.100.0",
"slate-react": "^0.101.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@vite-pwa/assets-generator": "^0.2.4",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-vitest": "^0.3.22",
"eslint-plugin-vitest-globals": "^1.4.0",
"fake-indexeddb": "^4.0.2",
"jsdom": "^24.0.0",
"vite": "^5.1.1",
"vite-plugin-pwa": "^0.18.1",
"vitest": "^1.2.2",
"workbox-precaching": "^7.0.0",
"workbox-routing": "^7.0.0"
}
}