-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1005 Bytes
/
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
{
"name": "template-next-starter-with-examples",
"version": "0.0.11",
"private": true,
"type": "module",
"scripts": {
"dev": "node ./scripts/dev-script.js",
"dev:monorepo": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@vercel/kv": "^1.0.1",
"@vercel/postgres": "^0.8.0",
"@xmtp/frames-validator": "^0.5.0",
"clsx": "^2.1.0",
"frames.js": "^0.15.1",
"next": "14.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss-animate": "^1.0.7"
},
"engines": {
"node": ">=18.17.0"
},
"devDependencies": {
"@frames.js/debugger": "^0.2.4",
"@types/node": "^18.17.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.0.1",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5.3.3"
}
}