-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
134 lines (134 loc) · 4.24 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@mll-lab/react-components",
"description": "Shared React components of MLL",
"version": "19.1.0",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"files": [
"cjs",
"esm",
"types"
],
"scripts": {
"build:clean": "rimraf cjs esm types",
"build:es": "rollup --config --bundleConfigAsCjs",
"build:ts": "tsc --declaration --declarationDir types --emitDeclarationOnly",
"build": "yarn run build:clean && yarn run build:es && yarn run build:ts",
"validate": "yarn run lint && yarn run typecheck && yarn run test",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "storybook dev --port=6006",
"storybook:build": "storybook build --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": {
"name": "Benedikt Franke",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mll-lab/react-components/issues"
},
"homepage": "https://github.com/mll-lab/react-components",
"peerDependencies": {
"@babel/runtime": "^7.20.13",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-hook-form": "^7.26.1",
"styled-components": "^6.1.1"
},
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@dnd-kit/core": "^6.0.8",
"@mll-lab/js-utils": "^2.36.1",
"antd": "4.20.5",
"date-fns": "^2.29.3",
"lodash": "^4.17.21",
"react-image-size": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/runtime": "^7.23.9",
"@mll-lab/eslint-config": "^3.1.0",
"@mll-lab/eslint-plugin": "^1.3.4",
"@mll-lab/prettier-config": "^1.0.0",
"@mll-lab/tsconfig": "^3.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addons": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-webpack5": "^7.5.3",
"@storybook/storybook-deployer": "^2.8.16",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.202",
"@types/node": "^20.9.4",
"@types/react": "^18.2.38",
"@types/react-datepicker": "^4.19.3",
"@types/react-dom": "^18.2.17",
"@types/testing-library__jest-dom": "^6.0.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-import": "^1.13.8",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.54.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^6.2.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-hotkeys": "^2.0.0",
"react-is": "^18.2.0",
"require-from-string": "^2.0.2",
"rimraf": "^6.0.1",
"rollup": "^4.9.6",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-styles": "^4.0.0",
"semantic-release": "^22.0.8",
"storybook": "^7.6.12",
"style-loader": "^3.3.3",
"styled-components": "^6.1.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"webpack": "^5.89.0"
},
"packageManager": "[email protected]"
}