-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.01 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.01 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
{
"name": "bloom",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"analyze": "ANALYZE=true pnpm build",
"test": "vitest",
"both": "concurrently \"pnpm run preview\" \"cd services/private-link-proxy && pnpm start\"",
"lint": "eslint \"{src,services}/**/*.{ts,tsx}\"",
"lint:fix": "pnpm lint -- --fix",
"format": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\""
},
"dependencies": {
"@nostr-dev-kit/ndk": "^2.9.1",
"@tanstack/react-query": "^5.45.1",
"axios": "^1.7.2",
"blossom-client-sdk": "^0.6.0",
"blurhash": "^2.0.5",
"music-metadata": "^10.5.1",
"nostr-tools": "^2.5.0",
"p-limit": "^4.0.0",
"qrcode": "^1.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-window": "^1.8.9"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitejs/plugin-react": "^5.0.2",
"autoprefixer": "^10.4.19",
"baseline-browser-mapping": "^2.9.11",
"concurrently": "^9.2.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"globals": "^16.4.0",
"postcss": "^8.4.39",
"prettier": "^3.6.2",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"typescript-eslint": "^8.46.2",
"vite": "^5.4.0",
"vitest": "^1.6.0"
},
"pnpm": {
"overrides": {
"@noble/hashes": "1.3.2",
"@noble/curves": "1.2.0"
}
}
}