-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.69 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.69 KB
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
{
"name": "upset-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"nohoist": [],
"scripts": {
"dev": "turbo run dev --parallel --no-cache --filter=@visdesignlab/*",
"dev:docs": "turbo run dev --parallel --no-cache --filter=userdocs",
"build:docs": "yarn --cwd ./packages/userdocs run typedoc --options ./typedoc.json && yarn --cwd ./packages/userdocs run build",
"build:typedoc": "typedoc --options ./packages/userdocs/typedoc.json",
"storybook": "turbo run storybook",
"test": "playwright test",
"build": "turbo run build --force --filter=@visdesignlab/*",
"lint": "turbo run lint --parallel --no-cache --filter=@visdesignlab/*",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@welldone-software/why-did-you-render": "^10.0.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.3.0",
"globals": "^16.1.0",
"prettier": "^3.5.3",
"prettier-eslint": "^16.4.2",
"rollup-plugin-postcss": "^4.0.2",
"turbo": "^2.4.1",
"typescript": "^5.8.3"
},
"packageManager": "yarn@1.22.19",
"dependencies": {
"@playwright/test": "^1.49.1",
"@vitejs/plugin-react-swc": "^4.2.2",
"eslint-config-react-app": "^7.0.1",
"react": "^19.2.4",
"vite": "^7.2.6",
"vite-plugin-dts": "^3.5.1"
}
}