forked from AudioBitsStellar/AudioBlocks_Frontend_v1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.76 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
{
"name": "audioblocks_frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"format": "prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky"
},
"dependencies": {
"@dynamic-labs/ethereum": "^4.23.0",
"@dynamic-labs/sdk-api": "^0.0.720",
"@dynamic-labs/sdk-react-core": "^4.23.0",
"@dynamic-labs/wagmi-connector": "^4.23.0",
"@heroicons/react": "^2.2.0",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-virtual": "^3.14.8",
"axios": "^1.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.0",
"js-cookie": "^3.0.5",
"lucide-react": "^0.522.0",
"next": "^15.5.19",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-slick": "^0.30.3",
"slick-carousel": "^1.8.1",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"viem": "^2.31.7",
"wagmi": "^2.15.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/bundle-analyzer": "^16.2.9",
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4",
"@tanstack/react-query-devtools": "^5.101.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-slick": "^0.23.13",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.30.1",
"eslint-config-next": "^15.5.19",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^16.1.2",
"pino-pretty": "^13.1.1",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.4",
"typescript": "^5",
"vitest": "^4.1.10"
},
"overrides": {
"postcss": "^8.5.10"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx,json,css,md}": [
"prettier --write"
]
}
}