forked from RunOnFlux/flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.05 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
{
"name": "zelflux",
"version": "0.58.2",
"description": "ZelFlux - ZelNode Daemon. The entrace to the Zel network.",
"repository": {
"type": "git",
"url": "git+https://github.com/zelcash/zelflux.git"
},
"keywords": [
"zel",
"zelcash",
"zelcore",
"zelnode",
"daemon",
"masternode",
"zelnodes",
"network",
"zelflux",
"flux",
"zelnetwork",
"zelnoded"
],
"author": "Tadeas Kmenta ([email protected])",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/zelcash/zelflux/issues"
},
"homepage": "https://github.com/zelcash/zelflux#readme",
"scripts": {
"lint": "vue-cli-service lint",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"test:zelback": "mocha tests/ZelBack",
"zelfrontdev": "vue-cli-service serve --port 16126",
"zelfrontprod": "nodemon ZelFront/server.js",
"zelfrontstart": "npm run zelfrontprod",
"zelfrontbuild": "vue-cli-service build",
"zelfrontbuildwatch": "vue-cli-service build --watch --mode production",
"zelbackstart": "nodemon ZelBack/server.js",
"zelbackdev": "nodemon ZelBack/server.js",
"zelflux": "nodemon app.js",
"start": "npm install && node init.js && concurrently \"npm run zelfrontbuildwatch\" \"npm run zelflux\"",
"dev": "node init.js && concurrently \"npm run zelbackdev\" \"npm run zelfrontdev\"",
"updatezelflux": "git pull && npm install",
"hardupdatezelflux": "rm -rf node_modules && rm -f package-lock.json && git reset --hard && git pull && npm run start",
"ciconfig": "cp sampleUserConfig.js config/userconfig.js && mkdir ~/.zelcash && cp sampleZelCashConfig.conf ~/.zelcash/zelcash.conf"
},
"dependencies": {
"axios": "^0.19.0",
"bitcoin": "^3.0.1",
"bitcoinjs-lib": "^5.1.6",
"bitcoinjs-message": "^2.1.0",
"body-parser": "^1.19.0",
"config": "^3.2.4",
"core-js": "^3.5.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dockerode": "^3.0.2",
"element-ui": "^2.13.0",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"fullnode": "file:lib/fullnode",
"inquirer": "^7.0.0",
"mongodb": "^3.4.0",
"morgan": "^1.9.1",
"node-cmd": "^3.0.0",
"nodemon": "^2.0.2",
"path": "^0.12.7",
"qs": "^6.9.1",
"store": "^2.0.12",
"stream": "0.0.2",
"vue": "^2.6.11",
"vue-router": "^3.1.3",
"vuex": "^3.1.2",
"ws": "^7.2.0",
"zelcashrpc": "file:lib/zelcashrpc",
"zeltrezjs": "^2.7.5"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-e2e-cypress": "^4.1.1",
"@vue/cli-plugin-eslint": "^4.1.1",
"@vue/cli-plugin-unit-mocha": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"@vue/eslint-config-airbnb": "^5.0.0",
"@vue/test-utils": "1.0.0-beta.30",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"concurrently": "^5.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.0.1",
"mocha": "^6.2.2",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"supertest": "^4.0.2",
"vue-template-compiler": "^2.6.11"
}
}