-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
92 lines (92 loc) · 2.85 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
{
"name": "minter-link",
"version": "0.1.14",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/minterscan/minter_link"
},
"scripts": {
"serve": "vue-cli-service build --mode development --watch",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"test:unit:cover": "jest --coverage",
"lint": "vue-cli-service lint",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint",
"test:unit"
],
"dependencies": {
"ant-design-vue": "^1.6.5",
"axios": "^0.19.2",
"bignumber.js": "^9.0.0",
"centrifuge": "^2.3.0",
"clipbrd": "^1.0.2",
"core-js": "^3.6.4",
"crypto-js": "^4.0.0",
"entity-decode": "^2.0.2",
"ethereumjs-util": "^6.2.0",
"js-base64": "^2.5.2",
"minter-connect": "^1.0.0",
"minterjs-tx": "^9.0.1",
"minterjs-util": "^0.18.2",
"minterjs-wallet": "^4.0.4",
"pretty-num": "^0.3.0",
"vue": "^2.6.11",
"vue-awesome": "^4.0.2",
"vue-class-component": "^7.2.2",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.6",
"vuex": "^3.1.2",
"vuex-module-decorators": "^0.16.1"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@types/clipboard": "^2.0.1",
"@types/crypto-js": "^3.1.43",
"@types/jest": "^24.0.19",
"@types/js-base64": "^2.3.1",
"@types/sinon-chrome": "^2.2.10",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"@vue/cli-plugin-babel": "^4.2.3",
"@vue/cli-plugin-e2e-cypress": "^4.2.3",
"@vue/cli-plugin-eslint": "^4.2.3",
"@vue/cli-plugin-router": "^4.2.3",
"@vue/cli-plugin-typescript": "^4.2.3",
"@vue/cli-plugin-unit-jest": "^4.2.3",
"@vue/cli-plugin-vuex": "^4.2.3",
"@vue/cli-service": "^4.2.3",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "1.0.0-beta.31",
"babel-loader": "^8.0.6",
"coveralls": "^3.1.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.1",
"jest-chrome": "^0.7.0",
"jest-webextension-mock": "^3.6.1",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"node-sass": "^4.12.0",
"pre-commit": "^1.2.2",
"sass-loader": "^8.0.2",
"sinon-chrome": "^3.0.1",
"ts-jest": "^26.4.0",
"typescript": "^3.8.3",
"vue-cli-plugin-browser-extension": "~0.24.0",
"vue-template-compiler": "^2.6.11",
"webextension-polyfill": "^0.6.0",
"webextension-polyfill-ts": "^0.14.0"
}
}