-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 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
{
"name": "web3auth-service",
"version": "0.0.0-development",
"type": "module",
"author": "Patrick Lee Scott <[email protected]>",
"contributors": [
"Amaury <[email protected]>"
],
"description": "Web3 Auth Service - Issues challenges to complete by signing with metamask, and JWT tokens (access, refresh, id) upon completion for use with backend API services such as Hasura",
"license": "MIT",
"main": "lib",
"private": true,
"repository": "https://github.com/cloudnativeentrepreneur/web3auth-service.git",
"scripts": {
"build": "tsc",
"dev": "dotenv -e .local.env -- nodemon",
"start": "node ./dist/index.js",
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
"format": "prettier --write --plugin-search-dir=. .",
"test": "echo 'Error: no test specified'"
},
"dependencies": {
"@metamask/eth-sig-util": "4.0.0",
"body-parser": "1.19.1",
"cors": "2.8.5",
"debug": "4.3.3",
"ethereumjs-util": "7.1.3",
"express": "4.20.0",
"express-basic-auth": "1.2.1",
"express-jwt": "6.1.0",
"express-pino-logger": "7.0.0",
"jsonwebtoken": "8.5.1",
"knativebus": "2.3.9",
"pg": "8.7.1",
"pg-hstore": "2.3.4",
"pino": "7.6.4",
"sequelize": "6.14.1",
"uuid": "8.3.2"
},
"devDependencies": {
"@types/bluebird": "3.5.42",
"@types/cors": "2.8.12",
"@types/debug": "4.1.7",
"@types/express": "4.17.13",
"@types/express-jwt": "6.0.4",
"@types/jsonwebtoken": "8.5.8",
"@types/uuid": "8.3.4",
"@types/validator": "13.7.1",
"@typescript-eslint/eslint-plugin": "5.10.1",
"dotenv-cli": "4.1.1",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-svelte3": "3.4.0",
"nodemon": "2.0.15",
"prettier": "2.5.1",
"prettier-plugin-svelte": "2.6.0",
"ts-node": "10.4.0",
"typescript": "4.5.5"
},
"resolutions": {
"ethereumjs-util": ">=6.0.0"
}
}