forked from inrupt/generate-oidc-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.34 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@inrupt/generate-oidc-token",
"version": "0.1.3",
"description": "A small app to help scripts access private resources on Solid Pods",
"main": "dist/index.js",
"bin": {
"generate-oidc-token": "cli/cli.js"
},
"scripts": {
"test": "eslint --config .eslintrc.js \"src/\" --ext .js,.jsx,.ts,.tsx && jest --passWithNoTests",
"build": "tsc",
"dev": "next dev",
"prepublishOnly": "npm run build",
"check-licenses": "license-checker --production --failOn \"AGPL-1.0-only; AGPL-1.0-or-later; AGPL-3.0-only; AGPL-3.0-or-later; Beerware; CC-BY-NC-1.0; CC-BY-NC-2.0; CC-BY-NC-2.5; CC-BY-NC-3.0; CC-BY-NC-4.0; CC-BY-NC-ND-1.0; CC-BY-NC-ND-2.0; CC-BY-NC-ND-2.5; CC-BY-NC-ND-3.0; CC-BY-NC-ND-4.0; CC-BY-NC-SA-1.0; CC-BY-NC-SA-2.0; CC-BY-NC-SA-2.5; CC-BY-NC-SA-3.0; CC-BY-NC-SA-4.0; CPAL-1.0; EUPL-1.0; EUPL-1.1; EUPL-1.1; GPL-1.0-only; GPL-1.0-or-later; GPL-2.0-only; GPL-2.0-or-later; GPL-3.0; GPL-3.0-only; GPL-3.0-or-later; SISSL; SISSL-1.2; WTFPL\"",
"lint": "eslint --config .eslintrc.js --fix; prettier --write src/*",
"prepare": "husky install",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inrupt/generate-oidc-token.git"
},
"keywords": [
"solid",
"oidc"
],
"author": "Inrupt Dev tooling team",
"license": "MIT",
"bugs": {
"url": "https://github.com/inrupt/generate-oidc-token/issues"
},
"homepage": "https://github.com/inrupt/generate-oidc-token#readme",
"devDependencies": {
"@inrupt/eslint-config-base": "^0.2.0-alpha.1",
"@inrupt/eslint-config-react": "^0.2.0-alpha.1",
"@inrupt/eslint-config-react-ts": "^0.1.2",
"@types/express": "^4.17.9",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-license-header": "^0.2.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"license-checker": "^25.0.1",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"lint-staged": {
"*.{jsx,ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,js,jsx,css,md,mdx}": "prettier --write"
},
"dependencies": {
"@babel/core": "^7.13.14",
"@inrupt/prism-react-components": "^0.13.1-alpha.2",
"@inrupt/solid-client-authn-node": "^1.11.0",
"@inrupt/solid-ui-react": "^2.1.1",
"@material-ui/core": "^4.11.3",
"@solid/lit-prism-patterns": "^0.13.1-alpha.2",
"@solid/lit-prism-theme-sdk-default": "^0.13.1-alpha.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clsx": "^1.1.1",
"express": "^4.17.1",
"inquirer": "^8.1.2",
"jss": "^10.6.0",
"jss-preset-default": "^10.6.0",
"next": "^11.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"yargs": "^16.2.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}