-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.52 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
{
"name": "ra-auth-msal-monorepo",
"private": true,
"author": "Jean-Baptiste Kaiser <[email protected]> (https://marmelab.com/)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.1.0",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"jest": "^29.1.1",
"jest-environment-jsdom": "^29.1.1",
"prettier": "~2.1.1",
"raf": "^3.4.1",
"ts-jest": "^29.0.3",
"typescript": "^5.5.4"
},
"scripts": {
"build": "yarn workspaces run build",
"build-demo": "cd packages/demo-react-admin && yarn build",
"run-demo": "cd packages/demo-react-admin && yarn dev",
"test-unit": "cd packages/ra-auth-msal && yarn test-unit",
"lint": "eslint --fix --ext .js,.ts,.tsx \"./packages/**/src/**/*.{js,ts,tsx}\"",
"prettier": "prettier --write \"./packages/**/src/**/*.{js,ts,tsx}\""
},
"resolutions": {
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/eslint-plugin": "^6.21.0"
},
"workspaces": [
"packages/*"
]
}