-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (39 loc) · 976 Bytes
/
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
{
"name": "bitcoin-faucet",
"version": "0.0.1",
"description": "Simple Bitcoin Faucet",
"main": "built/index.js",
"scripts": {
"test": "mocha tests.js",
"start": "ts-node src/index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kallewoof/bitcoin-faucet.git"
},
"keywords": [
"bitcoin",
"faucet"
],
"author": "Karl-Johan Alm",
"license": "MIT",
"bugs": {
"url": "https://github.com/kallewoof/bitcoin-faucet/issues"
},
"homepage": "https://github.com/kallewoof/bitcoin-faucet#readme",
"dependencies": {
"@types/ejs": "^3.0.6",
"@types/express": "^4.17.12",
"@types/express-session": "^1.17.3",
"@types/mongodb": "^3.6.16",
"@types/node": "^15.6.1",
"bcrpc": "^0.2.1",
"ejs": "^2.6.2",
"express": "^4.17.1",
"express-session": "^1.16.2",
"mongodb": "^3.2.7",
"rate-limiter-flexible": "^2.2.2",
"svg-captcha": "^1.4.0",
"typescript": "^4.3.2"
}
}