-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.31 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
{
"name": "web3-authentication-service",
"version": "1.0.0",
"description": "Web3 Authentication Service",
"main": "build/server.js",
"scripts": {
"start": "concurrently \"tsc --watch\" \"nodemon -q build/server.js\"",
"start-server": "node ./build/server.js",
"build": "tsc",
"test": "jest -o --testPathIgnorePatterns=smoke-tests --watch",
"eslint": "eslint ./",
"verify": "jest --testPathIgnorePatterns=smoke-tests && npm run eslint",
"smoke-tests": "jest --testPathPattern=smoke-tests --bail --runInBand"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.47.2",
"@aws-sdk/client-secrets-manager": "^3.49.0",
"@aws-sdk/lib-dynamodb": "^3.47.2",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@hapi/boom": "^9.1.4",
"@hapi/hapi": "^20.2.1",
"@types/hapi": "^18.0.6",
"@types/jsonwebtoken": "8.5.8",
"aws-sdk": "^2.1062.0",
"babel-jest": "^27.4.2",
"bs58": "^4.0.1",
"chance": "^1.1.8",
"dotenv": "^10.0.0",
"eslint-plugin-jest": "^25.3.0",
"hapi": "^18.1.0",
"jest-extended": "^1.2.0",
"joi": "^17.5.0",
"jose": "^4.4.0",
"jsonwebtoken": "8.5.1",
"jwks-rsa": "2.0.5",
"luxon": "^2.3.0",
"nanoid": "^3.1.30",
"node-fetch": "^2.6.6",
"node-jose": "^2.0.0",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.0",
"@types/bs58": "^4.0.1",
"@types/chance": "^1.1.3",
"@types/hapi__hapi": "^20.0.9",
"@types/jest": "^27.4.0",
"@types/luxon": "^2.0.9",
"@types/node": "^16.11.12",
"@types/node-fetch": "^2.5.12",
"@types/node-jose": "^1.1.8",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"concurrently": "^6.4.0",
"eslint": "^8.4.1",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.4.3",
"mockdate": "3.0.5",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.1",
"typescript": "^4.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnkoehn/web3-authentication-service.git"
},
"bugs": {
"url": "https://github.com/johnkoehn/web3-authentication-service/issues"
},
"homepage": "https://github.com/johnkoehn/web3-authentication-service#readme"
}