-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 4.96 KB
/
package.json
File metadata and controls
137 lines (137 loc) · 4.96 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": "insight-beta",
"version": "0.1.0",
"private": true,
"description": "Universal Oracle Data Analytics Platform - Multi-protocol oracle data analysis and aggregation",
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"lint": "eslint src --max-warnings=500",
"lint:security": "eslint src --rule 'security/*:error'",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:write": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"typecheck": "tsc --noEmit",
"supabase:provision": "node scripts/provision-supabase.mjs",
"test": "vitest",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage",
"test:coverage:report": "vitest run --coverage && open coverage/index.html",
"bench": "vitest run src/server/benchmark/",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:coverage:fail": "vitest run --coverage --exit-on-failure",
"test:coverage:threshold": "vitest run --coverage --passWithNoThresholdErrors",
"db:types": "supabase gen types --lang=typescript --project-id $SUPABASE_PROJECT_ID --schema public > src/types/supabase.ts",
"db:types:local": "supabase gen types --lang=typescript --local > src/types/supabase.ts",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"supabase:status": "supabase status",
"supabase:push": "supabase db push",
"supabase:pull": "supabase db pull",
"supabase:reset": "supabase db reset",
"supabase:link": "supabase link --project-ref $SUPABASE_PROJECT_ID",
"analyze:bundle": "node scripts/analyze-bundle.mjs",
"docs:api": "node scripts/generate-api-docs.mjs",
"i18n:extract": "tsx scripts/extract-translation-keys.ts",
"i18n:validate": "tsx scripts/validate-translations.ts",
"changeset": "changeset",
"changeset:add": "changeset add",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"test:chaos": "tsx scripts/chaos-test.ts",
"test:chaos:dry-run": "CHAOS_DRY_RUN=true CHAOS_ENABLED=true tsx scripts/chaos-test.ts",
"validate:schema": "tsx scripts/validate-schema-consistency.ts",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/nextjs": "^10.38.0",
"@solana/web3.js": "^1.98.4",
"@supabase/supabase-js": "^2.94.0",
"@walletconnect/ethereum-provider": "^2.19.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"critters": "^0.0.23",
"file-saver": "^2.0.5",
"framer-motion": "^12.33.0",
"html2canvas": "^1.4.1",
"jspdf": "^4.2.0",
"jszip": "^3.10.1",
"lucide-react": "0.562.0",
"next": "^16.1.6",
"next-swagger-doc": "^0.4.1",
"p-limit": "^7.3.0",
"pg": "8.16.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-virtuoso": "4.18.1",
"recharts": "3.6.0",
"sonner": "2.0.7",
"swr": "2.3.8",
"tailwind-merge": "3.4.0",
"uuid": "^10.0.0",
"viem": "2.43.5",
"xlsx": "^0.18.5",
"zod": "^3.24.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.4.1",
"@next/bundle-analyzer": "^16.1.6",
"@next/eslint-plugin-next": "^16.1.6",
"@playwright/test": "^1.58.0",
"@tailwindcss/container-queries": "^0.1.1",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/file-saver": "^2.0.7",
"@types/node": "20.19.0",
"@types/pg": "^8.11.0",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.24.0",
"@vitejs/plugin-react": "5.1.2",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "10.4.20",
"commitlint": "^20.4.2",
"drizzle-kit": "^0.31.9",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "9.1.7",
"jsdom": "27.4.0",
"lint-staged": "16.2.7",
"playwright": "^1.58.0",
"postcss": "8.4.49",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"vitest": "4.0.18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"!next-env.d.ts": [],
"*.{json,md}": [
"prettier --write"
]
}
}