-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2 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
{
"name": "open-video-share",
"version": "0.0.0",
"type": "module",
"private": true,
"scripts": {
"build": "tsc && vite build",
"copy:simple-peer": "cpy node_modules/simple-peer/simplepeer.min.js public --flat",
"dev": "vite --open",
"generate:manifest-icons": "pwa-asset-generator public/open-video-share-icon.png public/icons --favicon -i ./index.html",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prebuild": "npm run copy:simple-peer",
"predev": "npm run copy:simple-peer",
"prepare": "node -e \"try { require('husky').install() } catch (e) {}\"",
"preview": "vite preview",
"test": "playwright test -c playwright.config.ts",
"tsc": "tsc"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@mantine/core": "^6.0.11",
"@mantine/hooks": "^6.0.11",
"@mantine/notifications": "^6.0.21",
"@tabler/icons-react": "^3.5.0",
"buffer": "^6.0.3",
"husky": "9.0.11",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.5.2",
"pako": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.2",
"react-qr-code": "^2.0.14",
"react-zxing": "^1.1.4",
"simple-peer": "^9.11.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@playwright/test": "^1.34.3",
"@types/node": "^20.14.2",
"@types/pako": "^2.0.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/simple-peer": "^9.11.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.3.1",
"cpy-cli": "^5.0.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"prettier": "^3.3.2",
"prettier-plugin-pkg": "0.18.1",
"prettier-plugin-sh": "^0.14.0",
"pwa-asset-generator": "^6.3.1",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vite-plugin-pwa": "^0.20.0"
}
}