-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
56 lines (56 loc) · 1.57 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
{
"name": "@axafr/react-oidc-monorepo",
"private": true,
"version": "0.0.0",
"description": "Root package for the project",
"license": "MIT",
"workspaces": [
"packages/oidc-service-worker",
"packages/oidc-client",
"packages/react-oidc"
],
"keywords": [
"react",
"oidc"
],
"repository": {
"url": "https://github.com/AxaGuilDEv/react-oidc.git",
"type": "git"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"format": "prettier --write --cache .",
"lint": "eslint --cache .",
"lint-fix": "eslint --cache --fix .",
"outdated": "pnpm outdated -r",
"test": "pnpm run test --workspaces --if-present",
"build": "pnpm -r --filter=./packages/* run build"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-testing-library": "^6.2.2",
"prettier": "^3.3.3",
"tslib": "^2.6.3",
"tsx": "4.10.5",
"typescript": "5.4.5",
"vitest": "1.6.0"
},
"engines": {
"node": ">= 18.0.0"
},
"packageManager": "[email protected]"
}