-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
69 lines (69 loc) · 2.53 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
{
"name": "nwc-periodic-payments",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8081",
"build": "next build",
"start": "next start",
"lint": "tsc -noEmit && next lint && yarn format:check",
"format:fix": "yarn prettier --write . --check '!.db'",
"format:check": "yarn prettier --check . --check '!.db'",
"inngest:local": "inngest-cli dev",
"docker:start": "docker compose up",
"docker:stop": "docker compose stop",
"docker:remove": "docker compose down",
"db:migrate:local": "dotenv -e .env.local -- prisma migrate dev",
"db:migrate:local:createonly": "dotenv -e .env.local -- prisma migrate dev --create-only",
"db:connect:local": "psql postgres://user:password@localhost:5442/nwc-periodic-payments",
"db:connect:fly": "flyctl postgres connect -a nwc-periodic-payments-db -d nwc_periodic_payments",
"db:studio:local": "dotenv -e .env.local -- prisma studio",
"db:reset:local": "dotenv -e .env.local -- prisma migrate reset",
"deploy": "fly deploy --remote-only --build-secret DATABASE_URL=$DATABASE_URL --build-secret PRISMA_FIELD_ENCRYPTION_KEY=$PRISMA_FIELD_ENCRYPTION_KEY",
"db:deploy": "cd nwc-periodic-payments-db && fly deploy . --config db.toml --app nwc-periodic-payments-db --image flyio/postgres:14",
"db:migrate:deploy": "prisma migrate deploy",
"prepare": "husky install",
"cloak:generate": "cloak generate"
},
"dependencies": {
"@prisma/client": "5.3.0",
"@sentry/nextjs": "^8.47.0",
"@types/node": "20.6.0",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@getalby/bitcoin-connect-react": "^3.6.3",
"@getalby/sdk": "^3.8.2",
"@getalby/lightning-tools": "^5.1.2",
"autoprefixer": "^10.4.15",
"clsx": "^2.0.0",
"daisyui": "^3.7.3",
"date-fns": "^2.30.0",
"encoding": "^0.1.13",
"eslint": "8.49.0",
"eslint-config-next": "13.4.19",
"http-status-codes": "^2.2.0",
"inngest": "^2.6.0",
"ms": "^2.1.3",
"next": "^15.1.3",
"nodemailer": "^6.9.5",
"nostr-tools": "^1.15.0",
"postcss": "^8.4.29",
"prisma": "^5.3.0",
"prisma-field-encryption": "^1.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.46.1",
"react-hot-toast": "^2.4.1",
"serialize-error": "^11.0.2",
"tailwindcss": "^3.3.3",
"typescript": "5.2.2",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/nodemailer": "^6.4.10",
"dotenv-cli": "^7.3.0",
"husky": "^8.0.0",
"inngest-cli": "^1.3.3",
"prettier": "^3.0.3"
}
}