-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
88 lines (88 loc) · 2.58 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "REIDAO",
"description": "staking to validate node",
"version": "1.0.0",
"author": "haifun <[email protected]> (https://github.com/haifun)",
"contributors": [
"haifun <[email protected]> (https://github.com/haifun/)"
],
"scripts": {
"serve": "npm run build:validator && npm run build:addressTag && vue-cli-service serve --mode development",
"build": "npm run build:validator && npm run build:addressTag && vue-cli-service build --mode production",
"build:validator": "ts-node ./info/rei-validator/build/index.ts",
"build:addressTag": "ts-node ./info/rei-address-tag/build/index.ts",
"lint": "vue-cli-service lint",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.js'",
"deploy": "npm run build && surge --project dist && vercel --prod",
"start": "npm run serve"
},
"dependencies": {
"@apollo/client": "^3.5.8",
"@metamask/jazzicon": "^2.0.0",
"@types/node": "^10.12.12",
"@walletconnect/web3-provider": "^1.3.0",
"axios": "^0.18.0",
"axios-extensions": "^3.1.6",
"core-js": "^3.6.5",
"dayjs": "^1.10.7",
"echarts": "^4.9.0",
"ethereumjs-util": "^7.1.5",
"graphql": "^16.3.0",
"lodash": "^4.17.21",
"papaparse": "^5.3.2",
"prismjs": "^1.22.0",
"qr.js": "0.0.0",
"ts-lint": "^4.5.1",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"vue": "^2.6.11",
"vue-i18n": "^8.17.3",
"vue-jazzicon": "^0.1.3",
"vue-router": "^3.2.0",
"vue-timeago": "^5.1.3",
"vuetify": "^2.2.11",
"vuetify-dialog": "^2.0.10",
"vuetify-toast-snackbar-ng": "^0.7.3",
"vuex": "^3.4.0",
"web3": "^1.3.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "^4.5.6",
"@vue/cli-plugin-vuex": "^4.5.6",
"@vue/cli-service": "~4.5.0",
"archiver": "^5.0.2",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"ora": "^5.1.0",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"shelljs": "^0.8.4",
"vue-cli-plugin-axios": "0.0.4",
"vue-cli-plugin-i18n": "^1.0.1",
"vue-cli-plugin-vuetify": "~2.0.7",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.3.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}