-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 868 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 868 Bytes
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
{
"name": "react-git-log-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/library",
"packages/demo"
],
"scripts": {
"lint": "eslint packages/{library,demo}/src/**/*.{ts,tsx}",
"lint:fix": "eslint packages/{library,demo}/src/**/*.{ts,tsx} --fix",
"clean": "npm run clean --workspace=*"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@stylistic/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.21.0",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^10.1.11",
"globals": "^17.0.0",
"typescript-eslint": "^8.34.1"
},
"overrides": {
"react": "19.2.3",
"react-dom": "19.2.3"
}
}