forked from pk910/PoWFaucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.27 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
{
"name": "@powfaucet/server",
"version": "2.3.2",
"description": "PoW Faucet Server",
"main": "dist/app.js",
"bin": "bundle/powfaucet.cjs",
"type": "module",
"scripts": {
"build": "tsc",
"build-client": "cd faucet-client && node build-client.js",
"start": "tsc && node dist/app.js",
"bundle": "tsc && webpack --mode production",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 mocha --exit --trace-warnings 'tests/**/*.ts'",
"test-coverage": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 c8 --reporter=text --reporter=lcov mocha --exit -r ts-node/register 'tests/**/*.ts'"
},
"author": "pk910 (https://pk910.de)",
"license": "AGPL-3.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/pk910/PoWFaucet"
},
"pkg": {
"scripts": "bundle/*.cjs",
"assets": [
"faucet-config.example.yaml",
"static/**/*"
],
"targets": [
"node18-linux-x64",
"node18-win-x64"
],
"outputPath": "bin"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/chai": "^5.0.0",
"@types/json-bigint": "^1.0.4",
"@types/mocha": "^10.0.7",
"@types/mysql": "^2.15.26",
"@types/node-fetch": "^2.6.11",
"@types/node-static": "^0.7.11",
"@types/randombytes": "^2.0.3",
"@types/sinon": "^17.0.3",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.12",
"c8": "^10.1.2",
"chai": "^5.1.1",
"mocha": "^10.7.3",
"mysql-memory-server": "^1.3.0",
"nyc": "^17.0.0",
"sinon": "^19.0.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@brettz9/node-static": "^0.1.1",
"@ethereumjs/common": "^4.4.0",
"@ethereumjs/tx": "^5.4.0",
"@types/node": "^22.5.0",
"bignumber.js": "^9.1.2",
"hcaptcha": "^0.2.0",
"html-entities": "^2.5.2",
"json-bigint": "^1.0.0",
"mysql2": "^3.11.0",
"node-fetch": "^3.3.2",
"randombytes": "^2.1.0",
"tiny-typed-emitter": "^2.1.0",
"uuid": "^10.0.0",
"web3": "^4.11.1",
"web3-eth-ens": "^4.4.0",
"web3-providers-ipc": "^4.0.7",
"ws": "^8.18.0",
"yaml": "^2.5.0"
}
}