-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 1.3 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
{
"name": "ra-auth-cognito-monorepo",
"private": true,
"author": "Gildas Garcia <[email protected]> (https://marmelab.com/)",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.5",
"raf": "^3.4.1",
"typescript": "^5.5.4"
},
"scripts": {
"build": "yarn workspaces run build",
"build-demo": "cd packages/demo && yarn build",
"run-demo": "cd packages/demo && yarn dev",
"lint": "eslint --fix --ext .js,.ts,.tsx \"./packages/**/src/**/*.{js,ts,tsx}\"",
"prettier": "prettier --write \"./packages/**/src/**/*.{js,ts,tsx}\""
},
"workspaces": [
"packages/*"
],
"resolutions": {
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/eslint-plugin": "^6.21.0"
},
"packageManager": "[email protected]"
}