-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
68 lines (68 loc) · 2.33 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
{
"name": "teleotp",
"private": true,
"version": "0.4.0",
"type": "module",
"homepage": "https://github.com/UselessStudio/TeleOTP",
"scripts": {
"dev": "vite --host",
"build": "npm run generate && tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"generate": "npx mkdirp src/migration/proto/generated && pbjs -t static-module -w es6 src/migration/proto/migration.proto -o src/migration/proto/generated/migration.js && pbts -o src/migration/proto/generated/migration.d.ts src/migration/proto/generated/migration.js",
"test": "vitest"
},
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.11.0",
"@fontsource/inter": "^5.0.8",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.10",
"@uiw/color-convert": "^2.1.1",
"@uiw/react-color-colorful": "^2.0.6",
"copy-text-to-clipboard": "^3.2.0",
"crypto-js": "4.1.1",
"fuse.js": "^7.0.0",
"lottie-react": "^2.4.0",
"nanoid": "^5.0.1",
"otpauth": "^9.1.4",
"plausible-tracker": "^0.3.8",
"protobufjs": "^7.3.2",
"rdndmb-html5-to-touch": "^8.0.3",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-multi-backend": "^8.0.3",
"react-dnd-preview": "^8.0.3",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-flip-toolkit": "7.1.0",
"react-inlinesvg": "^4.1.3",
"react-qrcode-logo": "^3.0.0",
"react-router-dom": "^6.16.0",
"use-debounce": "^10.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.1",
"@testing-library/react": "^14.2.1",
"@twa-dev/types": "github:UselessStudio/twa-types",
"@types/crypto-js": "^4.1.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"jsdom": "^24.0.0",
"protobufjs-cli": "^1.1.2",
"typescript": "^5.4.3",
"vite": "5.2.7",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.5.2"
}
}