-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.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.1",
"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.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/inter": "^5.1.1",
"@mui/icons-material": "^6.4.1",
"@mui/material": "^6.4.1",
"@uiw/color-convert": "^2.3.4",
"@uiw/react-color-colorful": "^2.3.4",
"copy-text-to-clipboard": "^3.2.0",
"crypto-js": "4.1.1",
"fuse.js": "^7.0.0",
"lottie-react": "^2.4.1",
"nanoid": "^5.0.9",
"otpauth": "^9.3.6",
"plausible-tracker": "^0.3.9",
"protobufjs": "^7.4.0",
"rdndmb-html5-to-touch": "^8.1.2",
"react": "^18.0.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-multi-backend": "^8.1.2",
"react-dnd-preview": "^8.1.2",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "^18.0.0",
"react-flip-toolkit": "7.2.4",
"react-inlinesvg": "^4.1.8",
"react-qrcode-logo": "^3.0.0",
"react-router-dom": "^7.1.3",
"use-debounce": "^10.0.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@twa-dev/types": "github:UselessStudio/twa-types",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.18.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"jsdom": "^26.0.0",
"protobufjs-cli": "^1.1.3",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.0.3"
}
}