-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.67 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.67 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings=0",
"lint:fix": "eslint --ext .ts,.tsx,.js,.jsx . --fix",
"format": "prettier --write .",
"prepare": "husky install",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
"type-check": "tsc --noEmit",
"validate:ui": "node scripts/validate-ui.js",
"validate:web3": "node scripts/validate-web3.js",
"validate": "npm run validate:ui && npm run validate:web3"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hello-pangea/dnd": "^18.0.1",
"@hookform/resolvers": "^3.10.0",
"@monaco-editor/react": "^4.7.0",
"@tiptap/extension-image": "^3.20.0",
"@tiptap/extension-link": "^3.20.0",
"@tiptap/extension-placeholder": "^3.20.0",
"@tiptap/extension-youtube": "^3.20.0",
"@tiptap/react": "^3.20.0",
"@tiptap/starter-kit": "^3.20.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^12.23.0",
"idb": "^8.0.0",
"lucide-react": "^0.462.0",
"next": "15.3.1",
"next-themes": "^0.4.6",
"react": "^18.3.1",
"react-countdown": "^2.3.6",
"react-dom": "^18.3.1",
"react-hook-form": "^7.60.0",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.5.0",
"react-intersection-observer": "^10.0.3",
"recharts": "^2.15.4",
"socket.io-client": "^4.8.3",
"tailwind-merge": "^2.6.0",
"workbox-webpack-plugin": "^7.0.0",
"zod": "^3.25.75",
"zustand": "^5.0.10"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/vite": "^4.2.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/chai": "^5.2.3",
"@types/d3-array": "^3.2.2",
"@types/d3-color": "^3.1.3",
"@types/node": "^20",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@types/socket.io-client": "^1.4.36",
"@vitejs/plugin-react-swc": "^3.10.2",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"husky": "^8.0.3",
"lint-staged": "^14.3.0",
"fast-check": "^3.22.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.0.0",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vitest": "^2.1.9"
}
}