-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 954 Bytes
/
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
{
"name": "react-player-plugin-prompter-monorepo",
"packageManager": "yarn@4.3.1",
"private": true,
"workspaces": [
"core",
"demo",
"docs"
],
"scripts": {
"core": "yarn workspace react-player-plugin-prompter",
"demo": "yarn workspace demo",
"docs": "yarn workspace docs",
"dev": "yarn workspaces foreach --all -pi --include core --include demo run dev",
"typecheck": "yarn workspaces foreach --all run typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "5.5.3"
},
"resolutions": {
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0"
}
}