-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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
52
53
54
55
{
"name": "web3-example",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "cross-env BASE=dev nuxt",
"build:dev": "cross-env BASE=dev nuxt build",
"build:prod": "cross-env BASE=prod nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint": "npm run lint:js"
},
"dependencies": {
"@ethersproject/experimental": "^5.0.7",
"axios": "^0.21.0",
"bignumber.js": "^9.0.1",
"core-js": "^3.6.5",
"echarts": "^5.0.2",
"eslint-plugin-vue": "^7.4.1",
"ethereum-input-data-decoder": "^0.3.1",
"ethereumjs-tx": "^2.1.2",
"nuxt": "^2.14.6",
"postcss-px2rem": "^0.3.0",
"qs": "^6.9.4",
"vue": "^2.6.12",
"vuex": "^3.6.0"
},
"devDependencies": {
"@mdi/font": "^5.8.55",
"@nuxtjs/axios": "^5.12.2",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/vuetify": "^1.11.2",
"@walletconnect/web3-provider": "^1.3.3",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.17.0",
"eslint-plugin-nuxt": "^1.0.0",
"ethers": "^5.0.24",
"git-revision-webpack-plugin": "^3.0.6",
"jsbi": "^3.1.4",
"node-fetch": "^2.6.1",
"typescript": "^4.1.3",
"web3": "^1.3.1"
},
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": 8888
}
}
}