-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
43
{
"name": "upset-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"nohoist": [],
"scripts": {
"dev": "turbo run dev --parallel --no-cache",
"storybook": "turbo run storybook",
"test": "playwright test",
"build": "turbo run build --force",
"lint": "turbo run lint --parallel --no-cache",
"doc": "typedoc --options typedoc.json"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@welldone-software/why-did-you-render": "^8.0.3",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"rollup-plugin-postcss": "^4.0.2",
"turbo": "^2.4.1",
"typedoc": "^0.25.12",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "^4.5.5"
},
"packageManager": "yarn@1.22.19",
"dependencies": {
"@playwright/test": "^1.49.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint-config-react-app": "^7.0.1",
"react": "^18.3.1",
"vite": "^6.1.0",
"vite-plugin-dts": "^3.5.1"
}
}