forked from RunOnFlux/flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
156 lines (156 loc) · 4.77 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "flux",
"version": "3.27.0",
"description": "Flux, Your Gateway to a Decentralized World",
"repository": {
"type": "git",
"url": "git+https://github.com/runonflux/flux.git"
},
"keywords": [
"fluxnode",
"node",
"daemon",
"masternode",
"fluxnodes",
"network",
"flux",
"runonflux",
"fluxbench",
"zelcore"
],
"author": "Flux Dev Team",
"contributors": [
{
"name": "Tadeas Kmenta",
"email": "[email protected]"
},
{
"name": "Valter Silva",
"email": "[email protected]"
},
{
"name": "Simon T. Jewell",
"email": "[email protected]"
},
{
"name": "Kamil Piekarski",
"email": "[email protected]"
},
{
"name": "Jacek Adamczyk"
}
],
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/runonflux/flux/issues"
},
"homepage": "https://github.com/runonflux/flux#readme",
"scripts": {
"vuelint": "vue-cli-service lint",
"lint": "eslint --ext .js,.vue ./",
"lint:fix": "eslint --ext .js,.vue ./ --fix",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"test:zelback": "mocha tests/ZelBack",
"test:zelback:unit": "docker run -d --name fluxwebsite runonflux/website; env NODE_CONFIG_DIR=$PWD/tests/unit/globalconfig nyc --reporter=lcov mocha tests/unit/*.test.js --exit; docker stop fluxwebsite; docker rm fluxwebsite",
"homedev": "vue-cli-service serve --port 16126",
"homeprod": "nodemon homeServer.js",
"homebuild": "vue-cli-service build",
"fluxdev": "nodemon apiServer.js",
"flux": "nodemon app.js",
"start": "npm install --production && node init.js && npm run flux",
"dev": "node init.js && concurrently \"npm run fluxdev\" \"npm run homedev\"",
"softupdate": "git pull",
"softupdateinstall": "git pull; npm install --production",
"updateflux": "git pull; git reset --hard; rm -rf .git/index.lock HomeUI/dist; git reset --hard; git pull",
"hardupdateflux": "git pull; git reset --hard; rm -rf .git/index.lock ZelFront HomeUI/dist node_modules package-lock.json; git reset --hard; git pull; npm run start",
"ciconfig": "cp sampleUserConfig.js config/userconfig.js && mkdir ~/.flux && cp sampleDaemonConfig.conf ~/.flux/flux.conf",
"docs": "jsdoc -d docs --configure jsconf.json -r"
},
"dependencies": {
"@runonflux/nat-upnp": "~1.0.2",
"apicache": "~1.6.3",
"archiver": "~5.3.1",
"axios": "~0.27.2",
"bitcoin": "~3.0.3",
"bitcoinjs-lib": "~5.2.0",
"bitcoinjs-message": "~2.2.0",
"body-parser": "~1.20.0",
"compression": "~1.7.4",
"config": "~3.3.8",
"cors": "~2.8.5",
"crontab": "~1.4.2",
"daemonrpc": "file:lib/daemonrpc",
"dockerode": "~3.3.4",
"express": "~4.18.1",
"express-ws": "~5.0.2",
"formidable": "~2.0.1",
"fullnode": "file:lib/fullnode",
"inquirer": "~8.2.4",
"lru-cache": "~6.0.0",
"mongodb": "~4.10.0",
"morgan": "~1.10.0",
"node-cmd": "~3.0.0",
"node-df": "~0.1.4",
"nodemon": "~2.0.20",
"path": "~0.12.7",
"qs": "~6.11.0",
"store": "~2.0.12",
"ws": "~7.5.7",
"zeltrezjs": "~2.12.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.19",
"@vue/cli-plugin-e2e-cypress": "~4.5.19",
"@vue/cli-plugin-eslint": "~4.5.19",
"@vue/cli-plugin-unit-mocha": "~4.5.19",
"@vue/cli-service": "~4.5.19",
"@vue/composition-api": "~1.7.0",
"@vue/eslint-config-airbnb": "~5.3.0",
"@vue/test-utils": "~1.3.0",
"@vueuse/core": "~5.3.0",
"apexcharts": "~3.36.0",
"babel-eslint": "~10.1.0",
"babel-plugin-component": "~1.1.1",
"bootstrap-vue": "~2.23.1",
"chai": "~4.3.6",
"chai-as-promised": "~7.1.1",
"concurrently": "~6.5.1",
"copy-webpack-plugin": "~6.4.1",
"core-js": "~3.26.0",
"eslint": "~6.8.0",
"eslint-plugin-vue": "~7.20.0",
"jsdoc": "~3.6.11",
"leaflet": "~1.9.2",
"mocha": "~9.2.2",
"nyc": "~15.1.0",
"portal-vue": "~2.1.7",
"postcss-rtl": "~1.7.3",
"proxyquire": "~2.1.3",
"retry-axios": "~2.6.0",
"sass": "~1.55.0",
"sass-loader": "~10.3.1",
"sha.js": "~2.4.11",
"sinon": "~13.0.2",
"supertest": "~6.3.1",
"uuid": "~8.3.2",
"vee-validate": "~3.4.14",
"vue": "~2.6.14",
"vue-apexcharts": "~1.6.2",
"vue-awesome": "~4.3.1",
"vue-clipboard2": "~0.3.3",
"vue-feather-icons": "~5.1.0",
"vue-form-wizard": "~0.8.4",
"vue-i18n": "~8.27.2",
"vue-perfect-scrollbar": "~0.2.1",
"vue-ripple-directive": "~2.0.1",
"vue-router": "~3.6.5",
"vue-select": "~3.20.0",
"vue-sweetalert2": "~5.0.5",
"vue-template-compiler": "~2.6.14",
"vue-toastification": "~1.7.14",
"vue2-leaflet": "~2.7.1",
"vuex": "~3.6.2",
"webpack": "~4.46.0"
}
}