-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "oauth2-service",
"version": "0.0.1",
"description": "JWA OAuth2.0 Service",
"main": "dist/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"clean": "rm -rf ./dist/*",
"lint": "eslint ./src/ --ext .ts --max-warnings 0",
"prettier": "prettier --write .",
"build": "npx tsc",
"start": "node ./dist/index.js",
"dev": "concurrently \"npx tsc -w\" \"nodemon dist/index.js\"",
"test": "jest tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwa-lab/oauth2-service.git"
},
"keywords": [
"JWA",
"SSO",
"OAUTH2.0",
"OPENID"
],
"author": "JWA Lab",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jwa-lab/oauth2-service/issues"
},
"homepage": "https://github.com/jwa-lab/oauth2-service#readme",
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^26.0.20",
"@types/node": "^16.3.2",
"@types/node-fetch": "^2.5.12",
"@types/qs": "^6.9.7",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"concurrently": "^6.2.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"nodemon": "^2.0.12",
"openapi-types": "^9.0.3",
"prettier": "^2.2.1",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.21.1",
"nats": "^2.1.0",
"node-fetch": "^2.6.1",
"qs": "^6.10.1",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"jest": {
"testEnvironment": "node"
}
}