-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
110 lines (110 loc) · 3.62 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "lnapp-starter",
"version": "0.0.1",
"private": true,
"license": "MIT",
"scripts": {
"build:1-migrate": "prisma migrate deploy",
"build:2-build": "next build",
"build": "run-s build:*",
"db-seed": "prisma db seed",
"db-migrate-dev": "yarn prisma migrate dev",
"db-reset": "yarn prisma migrate reset",
"dev": "next dev",
"dx": "run-s db-migrate-dev db-seed dev",
"start": "next start",
"lint": "eslint src",
"lint-fix": "yarn lint --fix",
"test-dev": "start-server-and-test dev 3000 test",
"test-start": "start-server-and-test start 3000 test",
"test": "run-s test:*",
"test:unit": "jest",
"test:e2e": "playwright test",
"dev:e2e": "concurrently --kill-others \"yarn dev\" \"playwright test\"",
"ts-node": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\"",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "yarn ts-node prisma/seed.ts"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"useTabs": false,
"tabWidth": 4,
"semi": false,
"bracketSpacing": true,
"trailingComma": "all"
},
"dependencies": {
"@formkit/auto-animate": "^1.0.0-beta.5",
"@hookform/resolvers": "^2.9.10",
"@noble/secp256k1": "^1.7.1",
"@prisma/client": "^4.9.0",
"@tanstack/react-query": "^4.23.0",
"@trpc/client": "^10.9.0",
"@trpc/next": "^10.9.0",
"@trpc/react-query": "^10.9.0",
"@trpc/server": "^10.9.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.6",
"bech32": "^2.0.0",
"date-fns": "^2.29.3",
"jsonwebtoken": "^9.0.0",
"lightning": "^7.0.4",
"next": "^13.1.5",
"nextjs-cors": "^2.1.2",
"nostr-tools": "^1.2.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.42.1",
"react-image-file-resizer": "^0.4.8",
"secp256k1": "^5.0.0",
"base64-arraybuffer": "^1.0.2",
"start-server-and-test": "^1.15.3",
"superjson": "^1.12.2",
"tls": "^0.0.1",
"trpc-openapi": "^1.1.1",
"unique-names-generator": "^4.7.1",
"webln": "^0.3.2",
"websocket-polyfill": "^0.0.3",
"zod": "^3.20.2",
"zustand": "^4.3.2"
},
"devDependencies": {
"@playwright/test": "^1.29.2",
"@types/jest": "^29.2.6",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/secp256k1": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"eslint": "^8.32.0",
"eslint-config-next": "^13.1.5",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.0",
"js-lnurl": "^0.5.1",
"npm-run-all": "^4.1.5",
"playwright": "^1.29.2",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.1",
"prisma": "^4.9.0",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "4.9.4"
},
"publishConfig": {
"access": "restricted"
}
}