-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.07 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.07 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
{
"name": "generalmarket-frontend",
"version": "0.1.0",
"private": true,
"resolutions": {
"@solana/codecs-core": "2.1.1",
"@solana/codecs-numbers": "2.1.1",
"@solana/codecs-strings": "2.1.1",
"@solana/codecs-data-structures": "2.1.1",
"@solana/codecs": "2.1.1",
"@solana/addresses": "2.1.1",
"@solana/keys": "2.1.1"
},
"overrides": {
"@solana/web3.js": {
"@solana/codecs-core": "2.1.1",
"@solana/codecs-numbers": "2.1.1",
"@solana/codecs-strings": "2.1.1",
"@solana/codecs-data-structures": "2.1.1",
"@solana/codecs": "2.1.1",
"@solana/addresses": "2.1.1",
"@solana/keys": "2.1.1"
}
},
"scripts": {
"dev": "next dev",
"prebuild": "npx tsx scripts/build-founders-lookup.ts",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "bun test",
"test:watch": "bun test --watch",
"test:live": "bun test app/__tests__/data-integrity.test.ts app/__tests__/page-load-validation.test.ts",
"test:live:prod": "BACKEND_URL=https://api.generalmarket.io bun test app/__tests__/",
"test:live:local": "BACKEND_URL=http://localhost:3001 bun test app/__tests__/",
"e2e": "npx playwright test --config=e2e/playwright.config.ts",
"e2e:headed": "npx playwright test --config=e2e/playwright.config.ts --headed",
"e2e:debug": "npx playwright test --config=e2e/playwright.config.ts --debug",
"e2e:ui": "npx playwright test --config=e2e/playwright.config.ts --ui",
"check-translations": "npx tsx scripts/check-translations.ts"
},
"dependencies": {
"@mdx-js/react": "^3.1.1",
"@metamask/sdk": "^0.33.1",
"@next/mdx": "^16.1.6",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@solana/web3.js": "^1.98.4",
"@tanstack/react-query": "^5",
"@tanstack/react-virtual": "^3.13.18",
"@vercel/og": "^0.8.6",
"@walletconnect/ethereum-provider": "^2.23.4",
"bs58": "^6.0.0",
"destr": "^2.0.5",
"elliptic": "^6.6.1",
"framer-motion": "^12.29.0",
"geist": "^1.7.0",
"gray-matter": "^4.0.3",
"html2canvas": "^1.4.1",
"lightweight-charts": "^5.1.0",
"lit": "^3.3.2",
"merge-options": "^3.0.4",
"next": "^15",
"next-intl": "^4.8.3",
"next-mdx-remote": "^6.0.0",
"pino": "^10.3.0",
"pngjs": "^7.0.0",
"porto": "^0.2.37",
"posthog-js": "^1.352.1",
"qrcode.react": "^4.0.0",
"react": "^19",
"react-dom": "^19",
"react-window": "^2.2.5",
"recharts": "^2",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"socket.io-client": "^4.8.3",
"swr": "^2.4.1",
"three": "^0.183.2",
"valtio": "^2.3.0",
"viem": "^2.45.0",
"wagmi": "^3.4.1"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-window": "^2.0.0",
"autoprefixer": "^10",
"eslint": "^9",
"eslint-config-next": "^15",
"postcss": "^8",
"tailwindcss": "3",
"tsx": "^4.21.0",
"typescript": "^5"
},
"engines": {
"node": "20.x"
}
}