-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
70 lines (70 loc) · 2.12 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-complex-tree-root",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "[email protected]:lukasbach/react-complex-tree.git",
"directory": "packages/docs"
},
"author": "Lukas Bach",
"license": "MIT",
"private": true,
"scripts": {
"start": "lerna run start --parallel",
"build": "lerna run build",
"build:core": "lerna run build --scope react-complex-tree",
"test": "lerna run test --stream",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepublishOnly": "yarn build",
"lint": "eslint --ext .ts,.tsx packages/",
"lint:fix": "eslint --ext .ts,.tsx packages/ --fix"
},
"devDependencies": {
"@storybook/addon-a11y": "^6.5.14",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-docs": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/addons": "^6.5.14",
"@storybook/builder-webpack5": "^6.5.14",
"@storybook/manager-webpack5": "^6.5.14",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.5.14",
"@types/storybook__react": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.8",
"lerna": "^6.1.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-docgen": "^5.3.1",
"react-docgen-typescript": "^2.2.2",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^18.2.0",
"storybook-addon-react-docgen": "^1.2.42",
"ts-loader": "^9.4.1",
"webpack": "^5.74.0"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/html-minifier-terser"
]
},
"volta": {
"node": "18.12.1",
"yarn": "3.3.0"
}
}