-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 972 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 972 Bytes
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
{
"name": "@berachain/berachain-thridweb-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"test": "jest",
"clean": "rm -rf node_modules; rm -rf .turbo;",
"start": "next start",
"export": "next export",
"deploy": "next build && next export && npx thirdweb@latest upload out"
},
"dependencies": {
"@thirdweb-dev/chains": "^0.1.120",
"@thirdweb-dev/react": "^4",
"@thirdweb-dev/sdk": "^4",
"ethers": "^5",
"next": "^14",
"react": "^18.2",
"react-dom": "^18.2"
},
"devDependencies": {
"eslint": "^8.29.0",
"typescript": "^5.8.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.11.11",
"@types/react": "^18",
"eslint-config-next": "^13",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"tsup": "^8.0.0"
}
}