-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.25 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.25 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
{
"name": "tari-dot-com-2025",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"pages:build": "npx @cloudflare/next-on-pages",
"preview": "npm run pages:build && wrangler pages dev",
"deploy": "npm run pages:build && wrangler pages deploy",
"prebuild-updates": "node scripts/generate-updates-data.js",
"prebuild-lessons": "node scripts/generate-lessons-data.js",
"prebuild-posts": "node scripts/generate-posts-data.js",
"prebuild-all": "npm run prebuild-updates && npm run prebuild-lessons && npm run prebuild-posts"
},
"dependencies": {
"@floating-ui/react": "^0.27.5",
"@next/third-parties": "^15.2.2",
"@number-flow/react": "^0.5.10",
"@reown/appkit": "^1.7.8",
"@reown/appkit-adapter-wagmi": "^1.7.8",
"@reown/appkit-wallet-button": "^1.7.7",
"@tanstack/react-query": "^5.67.3",
"@uniswap/sdk-core": "^7.7.2",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"@uniswap/v3-sdk": "^3.25.2",
"ethers": "^6.14.3",
"gray-matter": "^4.0.3",
"hls.js": "^1.6.2",
"motion": "^12.5.0",
"next": "15.1.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-turnstile": "^1.1.4",
"react-use": "^17.6.0",
"styled-components": "^6.1.19",
"uuid": "^11.1.0",
"viem": "^2.30.6",
"wagmi": "^2.15.4",
"zustand": "^5.0.5"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.10",
"@eslint/eslintrc": "^3.3.1",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/styled-components": "^5.1.34",
"eslint": "^9",
"eslint-config-next": "15.2.2",
"prettier": "^3.6.0",
"typescript": "^5"
}
}