forked from bitcoinroyale/explorer
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
83 lines (83 loc) · 2.43 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
{
"name": "btcv-rpc-explorer",
"version": "1.11.8",
"description": "Explorer for Bitcoin Vault and RPC-compatible blockchains",
"private": false,
"bin": "bin/cli.js",
"scripts": {
"start": "node ./bin/www",
"start-dev": "nodemon ./bin/www",
"refresh-mining-pool-configs": "node ./bin/refresh-mining-pool-configs.js",
"test:testnet": "npx playwright test --config=test.config.ts",
"test:mainnet": "npx playwright test --config=prod.config.ts"
},
"keywords": [
"bitcoin vault",
"blockchain",
"explorer"
],
"author": "Dan Janosik <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoinvault/explorer.git"
},
"dependencies": {
"async": "2.6.2",
"basic-auth": "^2.0.1",
"bitcoin-core": "^1.2.0",
"bitcoinjs-lib": "5.0.3",
"bluebird": "^3.7.2",
"body-parser": "~1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.4.0",
"crypto-js": "3.1.9-1",
"csurf": "^1.10.0",
"d3-scale-chromatic": "^1.5.0",
"debug": "~4.1.1",
"decimal.js": "10.1.1",
"dotenv": "^8.0.0",
"electrum-client": "git+https://[email protected]/chaintools/node-electrum-client.git#43a999036f9c5",
"express": "^4.17.1",
"express-session": "1.16.1",
"helmet": "^4.6.0",
"jstransformer-markdown-it": "^2.1.0",
"lodash": "^4.17.21",
"lru-cache": "5.1.1",
"md5": "^2.3.0",
"meow": "^9.0.0",
"moment": "^2.24.1",
"moment-duration-format": "2.2.2",
"morgan": "^1.9.0",
"pug": "^3.0.2",
"qrcode": "^1.4.4",
"redis": "^3.1.2",
"request": "2.88.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@playwright/test": "^1.19.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.1",
"commitizen": "^4.2.3",
"conventional-changelog-conventionalcommits": "^4.5.0",
"cz-conventional-changelog": "^3.0.1",
"husky": "^5.1.1",
"less": "3.9.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"semantic-release": "^17.3.9"
},
"husky": {
"hooks": {
"pre-push": "yarn run playwright test --config=test.config.ts"
}
}
}