-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.4 KB
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
{
"name": "poh-validator-hcaptcha-api",
"version": "0.0.1",
"description": "Proof-of-Humanity hCaptcha Validator API",
"main": "index.js",
"type": "module",
"scripts": {
"start": "cross-env NODE_ENV=production node -r dotenv/config index.js",
"docker": "NODE_ENV=production node index.js",
"dev": "nodemon -r dotenv/config --inspect index.js",
"docker-build": "docker build -t bakoushin/poh-validator-hcaptcha .",
"docker-publish": "docker push bakoushin/poh-validator-hcaptcha",
"test": "env-cmd -f ./.env.test mocha --exit test/**/*.js"
},
"keywords": [
"PoH",
"humanity",
"proof",
"api",
"sever",
"hCaptcha"
],
"author": "Alex Bakoushin <alex@bakoush.in>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Human-Protocol/poh-validator-hcaptcha-api.git"
},
"bugs": {
"url": "https://github.com/Human-Protocol/poh-validator-hcaptcha-api/issues"
},
"homepage": "https://github.com/Human-Protocol/poh-validator-hcaptcha-api#readme",
"dependencies": {
"cors": "2.8.5",
"cross-env": "7.0.3",
"dotenv": "16.0.0",
"ethers": "5.6.4",
"express": "4.17.3",
"hcaptcha": "0.1.1",
"morgan": "1.10.0"
},
"devDependencies": {
"chai": "4.3.6",
"chai-http": "4.3.0",
"env-cmd": "10.1.0",
"mocha": "9.2.2",
"nodemon": "2.0.15"
},
"engines": {
"node": "16.x"
}
}