-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 970 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
{
"name": "eth-gpt",
"description": "EthGPT is an ChatGPT plugin written in Typescript to bring Ethereum and EVM-chain based dApp and smart contract functionalities.",
"version": "1.0.0",
"license": "MIT",
"homepage": "https://ethgpt.dev",
"repository": {
"type": "git",
"url": "https://github.com/xinbenlv/ethgpt"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.4.15",
"@types/cors": "^2.8.13",
"@types/node": "18.16.2",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@types/uuid": "^9.0.1",
"bufferutil": "^4.0.7",
"dotenv": "^16.0.3",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"ethers": "5",
"next": "13.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.0.4",
"utf-8-validate": "^6.0.3",
"uuid": "^9.0.0"
}
}