-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
80 lines (80 loc) · 3.45 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
{
"name": "rsk-explorer",
"version": "2.1.1",
"private": true,
"description": "Rsk explorer client",
"author": "emi <[email protected]>",
"scripts": {
"dev:mainnet": "env-cmd -f .env.mainnet npx vue-cli-service serve",
"dev:testnet": "env-cmd -f .env.testnet npx vue-cli-service serve",
"dev:staging": "env-cmd -f .env.staging npx vue-cli-service serve",
"dev:local": "env-cmd -f .env.local npx vue-cli-service serve",
"dev-with-tracking:mainnet": "env-cmd -f .env.mainnet npx vue-cli-service serve src/main.with.tracking.js",
"dev-with-tracking:testnet": "env-cmd -f .env.testnet npx vue-cli-service serve src/main.with.tracking.js",
"dev-with-tracking:staging": "env-cmd -f .env.staging npx vue-cli-service serve src/main.with.tracking.js",
"dev-with-tracking:local": "env-cmd -f .env.local npx vue-cli-service serve src/main.with.tracking.js",
"build:mainnet": "env-cmd -f .env.mainnet npx vue-cli-service build --modern",
"build:testnet": "env-cmd -f .env.testnet npx vue-cli-service build --modern",
"build:staging": "env-cmd -f .env.staging npx vue-cli-service build --modern",
"build:local": "env-cmd -f .env.local npx vue-cli-service build --modern",
"build-with-tracking:mainnet": "env-cmd -f .env.mainnet npx vue-cli-service build src/main.with.tracking.js --modern",
"build-with-tracking:testnet": "env-cmd -f .env.testnet npx vue-cli-service build src/main.with.tracking.js --modern",
"build-with-tracking:staging": "env-cmd -f .env.staging npx vue-cli-service build src/main.with.tracking.js --modern",
"build-with-tracking:local": "env-cmd -f .env.local npx vue-cli-service build src/main.with.tracking.js --modern",
"test:unit": "npx vue-cli-service test:unit",
"test:e2e": "npx vue-cli-service test:e2e",
"lint": "npx vue-cli-service lint",
"svg": "npx vsvg -s ./public/svg/icons -t ./src/icons --es6"
},
"dependencies": {
"@rsksmart/rsk-utils": "^1.1.0",
"bignumber.js": "^7.2.1",
"chroma-js": "^1.4.1",
"core-js": "^3.6.4",
"d3-format": "^1.4.3",
"env-cmd": "^10.1.0",
"ethers": "^5.7.0",
"highlight.js": "^9.18.3",
"highlightjs-solidity": "git+https://github.com/highlightjs/highlightjs-solidity.git",
"keccak": "^3.0.4",
"moment": "^2.27.0",
"socket.io-client": "^2.3.0",
"streamsaver": "^2.0.5",
"vue": "^2.6.11",
"vue-d3-barchart": "0.0.28",
"vue-gtag": "^1.8.0",
"vue-hotjar": "^1.2.0",
"vue-router": "^3.4.3",
"vuex": "^3.5.1",
"vuex-router-sync": "^5.0.0",
"@rsksmart/rns-resolver.js": "^1.1.0",
"@rsksmart/rsk-precompiled-abis": "^6.0.0-ARROWHEAD"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.12",
"@vue/cli-plugin-e2e-cypress": "^4.5.12",
"@vue/cli-plugin-eslint": "^4.5.12",
"@vue/cli-plugin-unit-mocha": "^4.5.12",
"@vue/cli-service": "^4.5.12",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.1.0",
"chai": "^4.1.2",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"mocha": "^6.2.2",
"pug": "^3.0.2",
"pug-plain-loader": "^1.0.0",
"raw-loader": "^0.5.1",
"sass": "^1.69.7",
"sass-loader": "^10.1.1",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2",
"vue-svgicon": "^3.2.9",
"vue-template-compiler": "^2.6.11"
}
}