-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.62 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
{
"name": "apexchainx-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"codegen": "openapi-typescript ${OPENAPI_SPEC_URL:-http://localhost:8000/openapi.json} -o src/types/api.generated.ts"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-slot": "^1.2.4",
"@sentry/browser": "^10.70.0",
"@sentry/nextjs": "^10.70.0",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.6",
"axios": "^1.17.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"driver.js": "^1.8.0",
"install": "^0.13.0",
"next": "16.1.4",
"npm": "^11.17.0",
"react": "^19.2.7",
"react-dom": "19.2.7",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4.3.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.5.0",
"eslint": "^9",
"eslint-config-next": "16.2.9",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.0.1",
"openapi-typescript": "^7.8.0",
"postcss": "^8.5.15",
"tailwindcss": "^4.1.18",
"typescript": "^5",
"vitest": "^4.1.8"
}
}