-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 KB
/
package.json
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
{
"name": "debugger-landingpage",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pages:build": "npx @cloudflare/next-on-pages@1",
"pages:deploy": "npm run pages:build && wrangler pages deploy .vercel/output/static",
"pages:watch": "npx @cloudflare/next-on-pages@1 --watch",
"pages:dev": "npx wrangler pages dev .vercel/output/static --compatibility-flag=nodejs_compat"
},
"dependencies": {
"@headlessui/react": "^2.1.1",
"@headlessui/tailwindcss": "^0.2.0",
"@heroicons/react": "^2.1.4",
"clsx": "^2.1.1",
"dayjs": "^1.11.12",
"feed": "^4.2.2",
"framer-motion": "^11.2.10",
"next": "14.2.11",
"react": "^18",
"react-dom": "^18",
"react-scroll": "^1.9.0",
"react-use-measure": "^2.1.1",
"starknet": "^6.11.0",
"starknetkit": "^1.1.9"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.6.3",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-scroll": "^1.8.10",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "14.2.11",
"eslint-plugin-next-on-pages": "^1.6.3",
"postcss": "^8.4.40",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.7",
"typescript": "^5",
"vercel": "^32.4.1"
}
}