-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.37 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
{
"name": "mindful-cash",
"version": "0.0.1",
"scripts": {
"serve": "vue-cli-service serve --host localhost",
"build-ui": "vue-cli-service build",
"build": "yarn compile && yarn typechain",
"compile": "npx buidler --config ./buidler.compile.config.ts compile",
"coverage": "npm run build && npx buidler coverage --temp artifacts --network coverage",
"lint:solidity": "npx solhint ./contracts/**/*.sol",
"lint:typescript": "tslint -c tslint.json {test,typechain,utils}/**/*.ts",
"yarn lint": "typescript"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"node-sass": "^4.11.0",
"npm": "^6.14.8",
"prettier": "^1.19.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"solc-0.6.4": "npm:[email protected]",
"solhint": "^3.0.0",
"ts-generator": "0.0.8",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.2",
"typechain": "^2.0.0",
"typescript": "^3.7.5",
"vue-svg-loader": "^0.12.0",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.29.6"
},
"directories": {
"test": "test"
},
"dependencies": {
"@types/vue-material": "git+https://github.com/calebsander/vue-material-types.git",
"apexcharts": "^3.22.0",
"axios": "^0.18.0",
"bn.js": "^5.1.1",
"bnc-notify": "^1.2.4",
"bnc-onboard": "^1.10.3",
"core-js": "^3.6.5",
"cross-env": "^5.2.0",
"cryptocompare": "^1.0.0",
"defi-sdk": "^0.0.1",
"dotenv": "^8.2.0",
"ethers": "^4.0.47",
"husky": "^4.3.0",
"moment": "^2.24.0",
"pify": "^4.0.1",
"rxjs": "^6.6.0",
"typeface-space-mono": "^0.0.71",
"vue": "^2.6.11",
"vue-apexcharts": "^1.6.0",
"vue-class-component": "^7.2.3",
"vue-cryptoicon": "^0.1.5",
"vue-dropdowns": "^1.1.2",
"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-property-decorator": "^8.4.2",
"vue-router": "^3.2.0",
"vue-slider-component": "^3.2.7",
"vuelidate": "^0.7.4",
"vuex": "^3.4.0",
"vuex-persistedstate": "^2.5.4",
"webpack-cli": "^3.3.12"
},
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
}
}