-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.78 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.78 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
{
"name": "nahan",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run build:portable && tsc -b && vite build",
"build:portable": "tsc -b && vite build --config vite.portable.config.ts && node -e \"const fs=require('fs'); try{fs.unlinkSync('public/nahan-portable.html')}catch(e){} fs.renameSync('public/index.html', 'public/nahan-portable.html')\"",
"lint": "eslint .",
"preview": "vite preview",
"check": "tsc -b --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"i18n:extract": "i18next-parser",
"i18n:check": "i18next-parser --fail-on-update",
"prepare": "husky",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@heroui/react": "2.7.11",
"@types/qrcode": "^1.5.6",
"clsx": "^2.1.1",
"driver.js": "^1.4.0",
"framer-motion": "^12.23.26",
"i18next": "^25.7.3",
"idb": "^8.0.3",
"jsqr": "^1.4.0",
"lucide-react": "^0.511.0",
"pako": "^2.1.0",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^16.5.1",
"react-qr-reader": "3.0.0-beta-1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.0.2",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-singlefile": "^2.3.0",
"workbox-window": "^7.4.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@heroui/theme": "2.4.17",
"@playwright/test": "^1.57.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^22.15.30",
"@types/pako": "^2.0.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/ui": "^4.0.16",
"@welldone-software/why-did-you-render": "^10.0.1",
"autoprefixer": "^10.4.21",
"babel-plugin-react-dev-locator": "^1.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.25.0",
"eslint-plugin-i18next": "^6.1.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-i18next": "^1.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"husky": "^9.1.7",
"i18next-parser": "^9.3.0",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.16"
}
}