-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
77 lines (77 loc) · 2.15 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
{
"name": "tokenpool",
"description": "Mining Pool for ERC20 Tokens",
"version": "1.7.0",
"type": "module",
"postcss": {
"plugins": {
"autoprefixer": {},
"tailwindcss": {}
}
},
"engines": {
"node": ">=0.14"
},
"engineStrict": true,
"scripts": {
"pool_with_log": "node -r esm index.js > ./log/std.log 2> ./log/err.log",
"pool": "node index.js ",
"build": "vue-cli-service build",
"express": "node express.js",
"web_production": "vue-cli-service serve --mode=production --port 3000",
"dev": "vue-cli-service serve --port 3030",
"deploy": "node deploy.js",
"lint": "vue-cli-service lint",
"mocha": "mocha test/mocha.js --timeout 3000",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"@ethereumjs/tx": "^3.4.0",
"@fortawesome/fontawesome-free": "^5.14.0",
"@tailwindcss/forms": "^0.2.1",
"axios": "^0.21.1",
"bree": "^6.2.0",
"cabin": "^9.0.4",
"connect": "^3.7.0",
"connect-history-api-fallback": "^1.6.0",
"core-js": "^2.6.5",
"esm": "^3.2.25",
"gh-pages": "^3.1.0",
"jayson": "^3.4.4",
"moment": "^2.29.3",
"mongodb": "^3.6.4",
"node-cron": "^2.0.3",
"segfault-handler": "^1.3.0",
"socket.io": "^3.1.2",
"socket.io-client": "^3.1.2",
"tailwindcss": "^1.0.0-beta.4",
"vue": "^2.6.6",
"vue-router": "^3.0.1",
"vue-tailwind": "^1.2.6",
"web3": "^1.5.0",
"web3-utils": "^1.5.0"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/node": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.13.10",
"@babel/register": "^7.7.4",
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-plugin-unit-mocha": "^4.5.6",
"@vue/cli-service": "^3.5.0",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"express": "^4.17.1",
"ganache-cli": "^6.12.2",
"highlight.js": "^10.2.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"vue-template-compiler": "^2.5.21"
}
}