-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
132 lines (132 loc) · 4.17 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "daihard",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "cross-env NODE_OPTIONS=--max_old_space_size=4096 vue-cli-service build",
"lint": "vue-cli-service lint",
"ganache": "ganache-cli --port 8545",
"ganache-ci": "ganache-cli --port 8545 > /dev/null &",
"compile": "truffle compile --all",
"deploy": "truffle deploy",
"migrate:development": "truffle migrate --network development --reset",
"migrate:kovan": "truffle migrate --network kovan --reset",
"migrate:mainnet": "truffle migrate --network mainnet --reset",
"test": "yarn run test-prep; truffle test;",
"test-prep": "rimraf ./build; yarn run compile; yarn run generate-typings;",
"lint:tests": "eslint ./test --fix",
"lint:contracts": "solium -d contracts/ --fix ",
"coverage": "node_modules/truffle/build/cli.bundled.js run coverage --network coverage --solcoverjs './.solcover.js'",
"generate-typings": "rimraf ./types/generated && typechain --target 'truffle-v5' --outDir types/generated './build/*.json'",
"generate:doc": "truffle compile && solidoc ./ ./docs true"
},
"dependencies": {
"@statnett/vue-plotly": "^0.3.2",
"apexcharts": "^3.6.7",
"axios": "^0.18.0",
"bn.js": "^5.1.1",
"core-js": "^2.6.5",
"cross-env": "^5.2.0",
"cryptocompare": "^1.0.0",
"ethjs-abi": "^0.2.1",
"moment": "^2.24.0",
"pify": "^4.0.1",
"plotly.js": "^1.49.4",
"typeface-space-mono": "^0.0.71",
"vue": "^2.6.6",
"vue-apexcharts": "^1.3.4",
"vue-cryptoicon": "^0.1.5",
"vue-jazzicon": "^0.1.3",
"vue-js-modal": "^1.3.28",
"vue-js-toggle-button": "^1.3.2",
"vue-lottie": "^0.2.1",
"vue-material": "^1.0.0-beta-10.2",
"vue-router": "^3.0.1",
"vue-slider-component": "^3.0.27",
"vuex": "^3.0.1",
"vuex-persistedstate": "^2.5.4",
"web3": "1.0.0-beta.37"
},
"devDependencies": {
"@truffle/contract": "^4.1.9",
"@typechain/truffle-v5": "^0.9.0",
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-service": "^3.5.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.2.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"ethlint": "^1.2.5",
"node-sass": "^4.11.0",
"openzeppelin-solidity": "^2.5.0",
"openzeppelin-test-helpers": "^0.4.2",
"sass-loader": "^7.1.0",
"solidity-coverage": "^0.7.1",
"truffle": "^5.1.13",
"truffle-assertions": "^0.9.2",
"truffle-hdwallet-provider": "^1.0.6",
"truffle-typings": "^1.0.8",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"typechain": "1.0.4",
"typescript": "^3.7.5",
"vue-svg-loader": "^0.12.0",
"vue-template-compiler": "^2.5.21",
"webpack": "^4.29.6"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"max-len": [
"error",
{
"code": 120
}
]
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"husky": {
"hooks": {
"pre-push": "npm run lint:contracts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Daichotomy/DaiHard.git"
},
"keywords": [
"Solidity",
"Ethereum",
"DeFi"
],
"author": "Daichotomy",
"license": "ISC",
"bugs": {
"url": "https://github.com/Daichotomy/DaiHard/issues"
},
"homepage": "https://github.com/Daichotomy/DaiHard#readme"
}