-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.67 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
{
"name": "little-gitster-girl",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:https": "VITE_HTTPS=true vite --host",
"build": "tsc -b && vite build && cp dist/index.html dist/404.html",
"build:sentry": "SENTRY_PLUGIN_ENABLED=true build",
"lint": "eslint .",
"preview": "vite preview",
"preview:https": "VITE_HTTPS=true vite preview --host",
"test": "vitest",
"generate-certs": "mkdir -p generated/certs && openssl genpkey -algorithm RSA -out generated/certs/private.key -pkeyopt rsa_keygen_bits:2048 && openssl req -new -key generated/certs/private.key -out generated/certs/csr.csr -subj \"/CN=localhost\" && openssl x509 -req -in generated/certs/csr.csr -signkey generated/certs/private.key -out generated/certs/certificate.crt -days 365"
},
"dependencies": {
"@sentry/react": "^8.36.0",
"@spotify/web-api-ts-sdk": "^1.2.0",
"jspdf": "^2.5.2",
"qr-scanner": "^1.4.2",
"qrcode-generator": "^1.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@sentry/vite-plugin": "^2.22.6",
"@types/node": "^22.8.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/spotify-web-playback-sdk": "^0.1.19",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.11.0",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.10",
"vite-plugin-pwa": "^0.21.0",
"vitest": "^2.1.4"
}
}