This repository was archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 4.65 KB
/
Copy pathpackage.json
File metadata and controls
137 lines (137 loc) · 4.65 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "asksats",
"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:e2e": "playwright test",
"dev:e2e": "concurrently --kill-others \"yarn dev\" \"playwright test\"",
"e2e:seed": "prisma db seed",
"e2e:dev": "yarn dev",
"e2e:test": "playwright test",
"e2e": "run-p e2e:seed e2e:dev e2e:test",
"ts-node": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\"",
"test:unit": "vitest run",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "yarn ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed-prod.ts"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"useTabs": false,
"tabWidth": 4,
"semi": false,
"bracketSpacing": true,
"trailingComma": "all"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.309.0",
"@aws-sdk/s3-presigned-post": "^3.309.0",
"@aws-sdk/s3-request-presigner": "^3.309.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@formkit/auto-animate": "^1.0.0-beta.6",
"@hookform/resolvers": "^3.0.1",
"@lexical/markdown": "^0.9.1",
"@lexical/react": "^0.9.1",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.11.16",
"@prisma/client": "^4.12.0",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/react-query": "^4.28.0",
"@trpc/client": "^10.19.1",
"@trpc/next": "^10.19.1",
"@trpc/react-query": "^10.19.1",
"@trpc/server": "^10.19.1",
"base64-arraybuffer": "^1.0.2",
"bech32": "^2.0.0",
"bip39": "^3.1.0",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"jsonwebtoken": "^9.0.0",
"lexical": "^0.9.1",
"lightning": "^7.1.8",
"next": "^13.3.0",
"next-seo": "^6.0.0",
"nextjs-cors": "^2.1.2",
"nostr-tools": "^1.8.2",
"pureimage": "^0.3.17",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-bottom-scroll-listener": "^5.1.0",
"react-countdown": "^2.3.5",
"react-dom": "^18.2.0",
"react-filerobot-image-editor": "^4.4.0",
"react-hook-form": "^7.43.9",
"react-image-file-resizer": "^0.4.8",
"react-markdown": "^8.0.6",
"remark-gfm": "^3.0.1",
"secp256k1": "^5.0.0",
"styled-components": "^5.3.9",
"superjson": "^1.12.2",
"react-konva": "^18.2.5",
"tls": "^0.0.1",
"trpc-openapi": "^1.1.2",
"unique-names-generator": "^4.7.1",
"webln": "^0.3.2",
"websocket-polyfill": "^0.0.3",
"zod": "^3.21.4",
"zustand": "^4.3.7"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@playwright/test": "^1.32.2",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/secp256k1": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"autoprefixer": "^10.4.14",
"bitcoin-wif": "^1.0.3",
"concurrently": "^8.0.1",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"js-lnurl": "^0.5.1",
"npm-run-all": "^4.1.5",
"playwright": "^1.32.2",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"prisma": "^4.12.0",
"prisma-dbml-generator": "^0.10.0",
"start-server-and-test": "^2.0.0",
"tailwindcss": "^3.3.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsx": "^3.12.6",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vitest": "^0.29.8"
},
"publishConfig": {
"access": "restricted"
}
}