-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "@apollosolutions/router-jwks-generator",
"version": "0.0.1",
"main": "dist/index.js",
"bin": "bin/index.js",
"author": "[email protected]",
"license": "MIT",
"type": "commonjs",
"repository": "https://github.com/apollosolutions/router-jwks-generator",
"engines": {
"node": ">=16"
},
"scripts": {
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"deploy": "npx tsc",
"prestart": "npx tsc",
"start": "node bin/index.js"
},
"devDependencies": {
"@types/inquirer": "^8.2.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"dependencies": {
"clipanion": "^3.2.0-rc.14",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"inquirer": "^8.2.5",
"jsonwebtoken": "^9.0.0",
"load-yaml-file": "^0.2.0",
"write-yaml-file": "^4.2.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}