forked from relaytools/relaycreator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.35 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.35 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
{
"name": "nonext",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "prisma generate && tsc",
"dev": "next dev",
"build": "next build",
"build-ts": "tsc",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"prisma:db:push": "prisma db push",
"prisma:studio": "prisma studio",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:db:reset": "prisma migrate reset --force",
"build:css": "postcss app.css -o public/output.css",
"rebuild-plan-changes-dry": "tsx scripts/rebuild-plan-changes.ts",
"rebuild-plan-changes-apply": "DRY_RUN=false tsx scripts/rebuild-plan-changes.ts"
},
"dependencies": {
"20": "link:@heroicons/react/20",
"@headlessui/react": "^2.2.9",
"@influxdata/influxdb-client": "^1.35.0",
"@nostr-dev-kit/ndk": "github:jeremyd/ndk#release&path:ndk",
"@prisma/client": "^5.22.0",
"@remixicon/react": "^4.8.0",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "20.14.12",
"@types/qrcode": "^1.5.6",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"alby-js-sdk": "^2.3.0",
"autoprefixer": "^10.4.23",
"clsx": "^2.1.1",
"daisyui": "^5.5.14",
"eslint-config-next": "^15.5.9",
"lnbits": "github:jeremyd/lnbits-js#noyarn",
"next": "^15.5.9",
"next-auth": "^4.24.13",
"next-themes": "^0.4.6",
"node-fetch": "^3.3.2",
"nostr-tools": "^2.19.4",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-preset-env": "^9.6.0",
"prisma": "^5.22.0",
"qrcode": "^1.5.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.5.0",
"react-toastify": "^11.0.5",
"recharts": "^2.15.4",
"solid": "link:@heriocons/react/20/solid",
"tailwind-merge": "^2.6.0",
"tailwind-variants": "^0.3.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0"
}
}