-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.41 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
{
"name": "filter-material-ui",
"version": "3.1.0",
"description": "A material-ui component which allows to edit a user defined set of fields representing a filter and display it as a text or a form",
"main": "lib/index.js",
"sideEffects": false,
"scripts": {
"re-install": "rimraf ./node-modules && yarn",
"build": "rimraf ./lib && tsc",
"deploy": "cross-env NODE_ENV=production yarn build && yarn npm publish",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook:start": "storybook dev -p 6006 -c storybook",
"storybook:build": "storybook build -c storybook -o docs",
"storybook:commit": "git add . && git commit -m \"Updated storybook\"",
"all": "yarn install && yarn storybook:build && yarn deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iulian-radu-at/filter-material-ui.git"
},
"files": [
"lib",
"index.d.ts"
],
"keywords": [
"text",
"filter",
"material-ui",
"filter-material-ui",
"react",
"react-component",
"ui",
"material design"
],
"author": "Iulian Radu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iulian-radu-at/filter-material-ui/issues"
},
"homepage": "https://github.com/iulian-radu-at/filter-material-ui#readme",
"dependencies": {
"@mui/material": "^5.14.20",
"input-material-ui": "^3.1.1",
"lodash": "^4.17.21",
"react-select-material-ui": "^9.3.1"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@storybook/react": "^7.6.4",
"@storybook/react-webpack5": "7.6.4",
"@types/babel-core": "^6.25.10",
"@types/lodash": "^4.14.202",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/react-select": "^5.0.1",
"babel-loader": "^9.1.3",
"babel-preset-react-app": "^10.0.1",
"cross-env": "^7.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"storybook": "^7.6.4",
"typescript": "^5.3.3",
"webpack": "^5.89.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"jest": {
"modulePathIgnorePatterns": [
"./node_modules",
"./history"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"testRegex": "src/*(/(__tests?__/)([^_].*/)*?[^_][^/]*?\\.(test|spec)?\\.(js?))$",
"setupFiles": [
"./enzymeAdapter.setup.js"
]
},
"packageManager": "[email protected]"
}