-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.07 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": "app-ui",
"version": "0.0.0",
"description": "Aptible's dashboard",
"author": "Eric Bower <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"start": "vite --host 0.0.0.0",
"build": "tsc && vite build",
"serve": "vite preview",
"fmt": "biome check --write --unsafe .",
"lint.types": "tsc --noEmit",
"lint.check": "biome ci .",
"lint.circular": "dpdm --no-tree --no-warning --exit-code circular:1 ./src/app/init.ts",
"lint": "yarn lint.types && yarn lint.check && yarn lint.circular",
"test": "yarn lint && vitest run"
},
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@floating-ui/react": "^0.27.0",
"@github/webauthn-json": "^2.1.1",
"@mintlify/widget-react": "^0.0.11",
"@remix-run/web-fetch": "^4.4.2",
"@sentry/react": "^8.45.0",
"@sentry/vite-plugin": "^2.22.7",
"@stripe/react-stripe-js": "^3.1.0",
"@stripe/stripe-js": "^5.3.0",
"@tailwindcss/forms": "^0.5.9",
"@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/debug": "^4.1.12",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.2",
"@types/react": "^18.3.16",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"chart.js": "^4.4.7",
"chartjs-adapter-luxon": "^1.3.1",
"classnames": "^2.5.1",
"debug": "^4.4.0",
"dotenv": "^16.4.7",
"dpdm": "^3.14.0",
"history": "^5.3.0",
"jsdom": "^25.0.1",
"luxon": "^3.5.0",
"msw": "^1.3.5",
"postcss": "^8.4.49",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-datepicker": "^7.5.0",
"react-dom": "^18.3.1",
"react-router": "^7.0.2",
"react-router-dom": "^7.0.2",
"starfx": "^0.13.4",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
}
}