forked from mll-lab/react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.69 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.69 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@mll-lab/react-components",
"description": "Shared React components of MLL",
"version": "5.2.1",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"files": [
"cjs",
"esm",
"types"
],
"scripts": {
"build": "rollup --config && tsc --emitDeclarationOnly",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook --port=6006",
"storybook:build": "build-storybook --quiet",
"typecheck": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore --ext .ts,.tsx,.js .",
"fix": "yarn run lint --fix",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mll-lab/react-components.git"
},
"keywords": [
"react",
"components"
],
"author": "Benedikt Franke <benedikt@franke.tech>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mll-lab/react-components/issues"
},
"homepage": "https://github.com/mll-lab/react-components",
"peerDependencies": {
"@babel/runtime": ">=7.13.6",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@mll-lab/js-utils": "^1.3.2",
"antd": "^4.16.12",
"date-fns": "^2.22.1",
"lodash": "^4.17.21",
"react-datepicker": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/eslint-parser": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.14.8",
"@mll-lab/eslint-config": "^1.1.0",
"@mll-lab/eslint-plugin": "^1.2.0",
"@mll-lab/prettier-config": "^1.0.0",
"@mll-lab/tsconfig": "^1.1.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-typescript": "^8.2.3",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-storyshots": "^6.3.4",
"@storybook/addons": "^6.3.4",
"@storybook/react": "^6.3.4",
"@storybook/storybook-deployer": "^2.8.10",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@testing-library/user-event": "^13.2.0",
"@types/enzyme": "^3.10.9",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/node": "^14.17.5",
"@types/react": "^16.9.12",
"@types/react-datepicker": "^4.1.3",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.11",
"@types/testing-library__jest-dom": "^5.14.1",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-styled-components": "^1.13.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.10.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"less": "^4.1.1",
"less-loader": "^7",
"prettier": "^2.3.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hotkeys": "^2.0.0",
"rollup": "^2.53.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-styles": "^3.14.1",
"semantic-release": "^17.4.4",
"style-loader": "^2",
"styled-components": "^5.3.0",
"ts-jest": "^27.0.3",
"ts-loader": "^8.3.0",
"ts-node": "^10.1.0",
"typescript": "4.2.4"
}
}