forked from pk910/PoWFaucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.75 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
{
"name": "pow-faucet-server",
"version": "2.0.5",
"description": "PoW Faucet Server",
"main": "dist/app.js",
"bin": "dist/powfaucet.js",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/app.js",
"bundle": "webpack --mode production",
"test": "mocha --exit -r ts-node/register --trace-warnings 'tests/**/*.ts'",
"test-coverage": "nyc --reporter=text --reporter=lcov mocha --exit -r ts-node/register 'tests/**/*.ts'"
},
"author": "pk910 (https://pk910.de)",
"license": "AGPL-3.0",
"pkg": {
"scripts": "dist/powfaucet.js",
"assets": [
"faucet-config.example.yaml",
"static/**/*"
],
"targets": [
"node18-linux-x64",
"node18-win-x64"
],
"outputPath": "dist"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.4",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/mysql": "^2.15.21",
"@types/node-static": "^0.7.7",
"@types/randombytes": "^2.0.0",
"@types/sinon": "^10.0.15",
"@types/ws": "^8.5.4",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.5",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@brettz9/node-static": "^0.1.1",
"@ethereumjs/common": "^2.6.5",
"@ethereumjs/tx": "^3.5.2",
"@types/node": "^17.0.45",
"bignumber.js": "^9.1.1",
"ethereum-ens": "^0.8.0",
"ethereumjs-util": "^7.1.5",
"hcaptcha": "^0.1.1",
"html-entities": "^2.3.3",
"mysql": "^2.18.1",
"node-fetch": "^2.6.11",
"randombytes": "^2.1.0",
"tiny-typed-emitter": "^2.1.0",
"web3": "^1.10.0",
"ws": "^8.13.0",
"yaml": "^2.2.2"
}
}