forked from lukasbach/react-complex-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.68 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
{
"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 --npm-client=yarn",
"build": "lerna run build --npm-client=yarn",
"test": "lerna run test --npm-client=yarn --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",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"devDependencies": {
"@storybook/addon-a11y": "^6.3.6",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-docs": "^6.1.11",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/addons": "^6.1.11",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.1.11",
"@types/storybook__react": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"lerna": "^3.22.1",
"prettier": "^2.3.2",
"react-docgen": "^5.3.1",
"react-docgen-typescript": "^1.20.5",
"react-docgen-typescript-loader": "^3.7.2",
"storybook-addon-react-docgen": "^1.2.42",
"ts-loader": "^8.0.11"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/html-minifier-terser"
]
}
}