-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
69
70
71
72
73
74
{
"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,backend-mock}/**/*.{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",
"@nextui-org/react": "^2.3.6",
"axios": "^1.7.9",
"i18next": "^24.2.0",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-i18next": "^15.2.0",
"react-router": "^7.1.1",
"react-toastify": "^11.0.2",
"react-tooltip": "^5.28.0",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "^1.49.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.11",
"msw": "^2.7.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.17",
"typescript": "~5.7.2",
"vite": "^6.0.6",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
}
}