-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.14 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
{
"name": "vouch-db",
"version": "1.0.0",
"description": "A storage for Proof of Humanity vouches.",
"keywords": [
"proof-of-humanity",
"ethereum",
"sybil",
"resistance"
],
"author": "Kleros",
"main": "dist/index.js",
"scripts": {
"eslint": "eslint src/server.ts",
"postinstall": "chmod +x ./scripts/dev.sh",
"build": "tsc",
"lint": "./node_modules/eslint/bin/eslint.js src --ext .ts",
"dev": "./scripts/dev.sh",
"dev-server": "NODE_ENV=development MONGO_URL=mongodb://localhost:27017/vouches nodemon",
"ts-node-server": "ts-node src/server.ts",
"start": "node dist/src/server.js",
"test": "jest",
"fix-lint": "./node_modules/eslint/bin/eslint.js src --ext .ts --fix"
},
"dependencies": {
"@hapi/joi": "17.1.1",
"@types/cors": "^2.8.10",
"@types/express-rate-limit": "^5.1.1",
"@types/express-slow-down": "^1.3.0",
"body-parser": "1.19.0",
"chalk": "4.1.0",
"compression": "1.7.4",
"cors": "^2.8.5",
"delay": "^5.0.0",
"dotenv": "8.2.0",
"eth-sig-util": "^3.0.1",
"ethers": "^5.1.3",
"express": "4.17.1",
"express-rate-limit": "^5.2.6",
"express-slow-down": "^1.4.0",
"helmet": "^4.4.1",
"mongoose": "5.12.3",
"swagger-ui-express": "4.1.6",
"web3": "^1.3.5",
"winston": "3.3.3",
"winston-transport": "4.4.0"
},
"devDependencies": {
"@types/compression": "1.7.0",
"@types/express": "4.17.11",
"@types/hapi__joi": "17.1.6",
"@types/jest": "26.0.22",
"@types/node": "14.14.37",
"@types/supertest": "2.0.11",
"@types/swagger-ui-express": "4.1.2",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"eslint": "^7.23.0",
"eslint-plugin-import": "^2.22.1",
"jest": "26.6.3",
"jest-express": "1.12.0",
"nodemon": "2.0.7",
"supertest": "6.1.3",
"ts-jest": "26.5.4",
"ts-node": "9.1.1",
"typescript": "4.2.3"
},
"license": "MIT",
"volta": {
"node": "12.22.1"
},
"bugs": {
"url": "https://github.com/Proof-Of-Humanity/vouch-db/issues"
},
"homepage": "https://github.com/Proof-Of-Humanity/vouch-db#readme"
}