-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
128 lines (128 loc) · 4.36 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
{
"name": "mui-querybuilder",
"description": "Material-UI Query Builder.",
"version": "1.2.1",
"license": "MIT",
"author": "Tiago Fernandez",
"homepage": "https://github.com/tiagofernandez/mui-querybuilder#readme",
"keywords": [
"react",
"material-ui",
"mui-querybuilder",
"query builder"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tiagofernandez/mui-querybuilder.git"
},
"bugs": {
"url": "https://github.com/tiagofernandez/mui-querybuilder/issues"
},
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"files": [
"/dist"
],
"jest": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts}*": [
"eslint --quiet --fix",
"prettier --write --ignore-unknown"
]
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"parser": "typescript",
"style": "module"
}
},
"scripts": {
"analyze": "source-map-explorer dist/index.modern.js",
"build": "rm -rf dist/ & microbundle-crl --format modern --jsxFragment React.Fragment",
"build-storybook": "rm -rf docs/ & build-storybook --docs -o docs/",
"format": "prettier --write src/",
"lint": "eslint \"src/**/*.{js,ts}*\" --quiet --fix",
"postbuild": "cp dist/index.modern.js dist/index.js",
"storybook": "onchange 'src/**' -- prettier --write --ignore-unknown {{changed}} & start-storybook -p 6006",
"test": "jest"
},
"dependencies": {
"@date-io/core": "1.3.13",
"@date-io/date-fns": "1.3.13",
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.56",
"@material-ui/pickers": "3.2.10",
"array-move": "3.0.1",
"date-fns": "2.16.1",
"dequal": "2.0.2",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-is": "16.13.1",
"react-smooth-dnd": "0.11.1"
},
"peerDependencies": {
"@date-io/core": "1.x",
"@date-io/date-fns": "1.x",
"@material-ui/core": ">=4.11.0",
"@material-ui/icons": ">=4.9.1",
"@material-ui/lab": ">=4.0.0-alpha.56",
"@material-ui/pickers": ">=3.2.10",
"date-fns": ">=2.16.1",
"prop-types": ">=15.7.2",
"react": ">=16.13.1",
"react-dom": ">=16.13.1",
"react-is": ">=16.13.1"
},
"devDependencies": {
"@babel/cli": "7.10.1",
"@babel/core": "7.10.2",
"@babel/node": "7.10.1",
"@babel/plugin-proposal-class-properties": "7.10.1",
"@babel/plugin-proposal-decorators": "7.10.1",
"@babel/plugin-proposal-object-rest-spread": "7.10.1",
"@babel/plugin-transform-object-assign": "7.10.1",
"@babel/plugin-transform-runtime": "7.10.1",
"@babel/preset-env": "7.10.2",
"@babel/preset-react": "7.10.1",
"@babel/register": "7.10.1",
"@storybook/addon-actions": "6.0.21",
"@storybook/addon-essentials": "6.0.21",
"@storybook/addon-links": "6.0.21",
"@storybook/react": "6.0.21",
"@typescript-eslint/eslint-plugin": "4.1.1",
"@typescript-eslint/parser": "4.1.1",
"@welldone-software/why-did-you-render": "5.0.0-alpha.2",
"babel-eslint": "10.1.0",
"babel-jest": "26.0.1",
"babel-loader": "8.1.0",
"babel-plugin-module-resolver": "4.0.0",
"babel-plugin-optimize-clsx": "2.6.0",
"babel-plugin-transform-dev-warning": "0.1.1",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"eslint": "7.9.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jest": "24.0.1",
"eslint-plugin-react": "7.20.6",
"husky": "4.3.0",
"import-sort-style-module": "6.0.0",
"jest": "26.4.2",
"lint-staged": "10.4.0",
"microbundle-crl": "0.13.11",
"onchange": "7.0.2",
"prettier": "2.1.2",
"prettier-plugin-import-sort": "0.0.4",
"react-test-renderer": "16.13.1",
"source-map-explorer": "2.5.0",
"typescript": "4.0.2",
"webpack": "4.44.1"
}
}