generated from raid-guild/buidler-waffle-typechain-oz-vue
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
95 lines (95 loc) · 3.02 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
89
90
91
92
93
94
95
{
"name": "buidler-waffle-typechain-vue",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "yarn build:contracts && yarn build:web",
"build:contracts": "buidler typechain",
"build:web": "vue-cli-service build",
"clean": "rm -rf cache && rm -rf build",
"deploy:local": "yarn clean && yarn build:contracts",
"lint": "vue-cli-service lint",
"start:dev": "yarn deploy:local && vue-cli-service serve",
"start:node": "buidler node",
"start:web": "vue-cli-service serve",
"test": "yarn test:contracts && yarn test:unit && yarn test:e2e",
"test:contracts": "buidler test",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"upgrade:local": "yarn build:contracts"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.8.2",
"@resolver-engine/core": "^0.3.3",
"@walletconnect/web3-provider": "^1.0.0-beta.47",
"abi-decoder": "^2.3.0",
"apollo-boost": "^0.4.7",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"core-js": "^3.6.4",
"ethers": "^4.0.45",
"graphql": "^14.0.0",
"register-service-worker": "^1.6.2",
"roboto-fontface": "*",
"vue": "^2.6.11",
"vue-apollo": "^3.0.3",
"vue-class-component": "^7.2.2",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.5",
"vuetify": "^2.2.11",
"vuex": "^3.1.2",
"web3modal": "^1.3.0"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.2.0",
"@nomiclabs/buidler-ethers": "^1.2.0",
"@nomiclabs/buidler-waffle": "^1.2.0",
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.7",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-e2e-cypress": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-pwa": "~4.2.0",
"@vue/cli-plugin-router": "~4.2.0",
"@vue/cli-plugin-typescript": "~4.2.0",
"@vue/cli-plugin-unit-mocha": "~4.2.0",
"@vue/cli-plugin-vuex": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.1",
"@vue/test-utils": "1.0.0-beta.31",
"buidler-typechain": "^0.0.5",
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.1.2",
"ethereum-waffle": "^2.3.2",
"lint-staged": "^9.5.0",
"null-loader": "^3.0.0",
"prettier": "^1.19.1",
"sass": "^1.25.0",
"sass-loader": "^8.0.2",
"solc": "0.6.3",
"ts-generator": "^0.0.8",
"ts-node": "^8.6.2",
"typechain": "^1.0.5",
"typechain-target-ethers": "^1.0.3",
"typechain-target-truffle": "^1.0.2",
"typechain-target-web3-v1": "^1.0.4",
"typescript": "^3.8.3",
"vue-cli-plugin-vuetify": "~2.0.5",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.3.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}