-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.17 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.17 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
{
"name": "raspiblitz-web",
"version": "1.4.0-dev",
"license": "MIT",
"type": "module",
"author": {
"name": "Christoph Stenglein",
"email": "christoph@cstenglein.com",
"url": "https://cstenglein.com/"
},
"scripts": {
"start": "vite",
"dev": "npm run start",
"dev:local": "concurrently \"npm run backend\" \"npm run start\"",
"backend": "npm start --prefix ./backend-mock",
"build": "vite build",
"tsc": "tsc --noEmit",
"test": "vitest run --exclude 'tests'",
"test:watch": "vitest watch --exclude 'tests'",
"coverage": "vitest run --coverage --exclude 'tests'",
"prepare": "husky",
"lint": "biome check src"
},
"config": {
"port": "3000"
},
"lint-staged": {
"{src}/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"biome check --write"
]
},
"dependencies": {
"@bitcoin-design/bitcoin-icons-react": "^0.1.10",
"@heroicons/react": "^2.2.0",
"@heroui/react": "^2.8.2",
"@heroui/system": "^2.4.20",
"@heroui/theme": "^2.4.20",
"@tailwindcss/vite": "^4.1.17",
"axios": "^1.13.2",
"framer-motion": "^12.23.12",
"i18next": "^25.6.3",
"qrcode.react": "^4.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.66.1",
"react-i18next": "^16.3.5",
"react-router": "^7.9.6",
"react-toastify": "^11.0.5",
"react-tooltip": "^5.28.1",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@playwright/test": "^1.52.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.12",
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"lint-staged": "^16.2.7",
"msw": "^2.12.2",
"resize-observer-polyfill": "^1.5.1",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.12"
}
}