-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
70 lines (70 loc) · 2.7 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-components",
"version": "1.0.0",
"description": "DHI React Components",
"main": "index.js",
"license": "MIT",
"author": "DHI",
"private": true,
"scripts": {
"lint": "yarn lint",
"sb": "yarn start-storybook --config-dir ./packages/react-components/.storybook",
"icons:build": "cd packages/icons && yarn run build",
"lab:start": "yarn run icons:build && yarn start-storybook --config-dir ./packages/react-components-lab/.storybook",
"lab:build-storybook": "yarn run icons:build && yarn build-storybook --config-dir ./packages/react-components-lab/.storybook --output-dir ./packages/react-components-lab/storybook-static"
},
"workspaces": [
"./packages/react-components-lab",
"./packages/react-components",
"./packages/icons"
],
"devDependencies": {
"@babel/core": "^7.9.6",
"@storybook/addon-actions": "^6.5.7",
"@storybook/addon-docs": "^6.5.7",
"@storybook/addon-essentials": "^6.5.7",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.5.7",
"@storybook/addon-storysource": "^6.5.7",
"@storybook/addons": "^6.5.7",
"@storybook/react": "^6.5.7",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-loader": "^8.2.2",
"eslint": "^8.19.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard-typescript-prettier": "^6.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-standard": "4",
"eslint-plugin-storybook": "^0.5.5",
"fork-ts-checker-webpack-plugin": "^5.0.14",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"ts-loader": "^8.0.2",
"tsdx": "^0.14.1",
"tslib": "^1.11.1",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.2.3"
},
"resolutions": {
"node-gyp": "^7.0.1",
"react-element-to-jsx-string": "14.3.2",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3"
}
}