-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
{
"name": "upset-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"nohoist": [],
"scripts": {
"dev": "turbo run dev --parallel --no-cache",
"storybook": "turbo run storybook",
"test": "playwright test",
"build": "turbo run build --force",
"prepublish": "lerna run prepublish",
"publish-canary": "echo 'Do something'",
"publish-stable": "echo 'Do something'",
"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",
"lerna": "^4.0.0",
"rollup-plugin-postcss": "^4.0.2",
"turbo": "^1.0.24",
"typedoc": "^0.25.12",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "^4.5.5"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"packageManager": "[email protected]",
"dependencies": {
"@playwright/test": "^1.15.0",
"@vitejs/plugin-react": "^4.0.4",
"eslint-config-react-app": "^7.0.1",
"react": "^18.0.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.1",
"vite-tsconfig-paths": "^4.2.0"
}
}