forked from ukrbublik/react-awesome-query-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.75 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
{
"name": "react-awesome-query-builder-demo",
"version": "0.5.0",
"description": "Demo for react-awesome-query-builder",
"main": "src/index.jsx",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/ukrbublik/react-awesome-query-builder.git"
},
"scripts": {
"start": "SKIP_PREFLIGHT_CHECK=true react-scripts start",
"build": "SKIP_PREFLIGHT_CHECK=true react-scripts build",
"test": "SKIP_PREFLIGHT_CHECK=true react-scripts test --env=jsdom",
"eject": "SKIP_PREFLIGHT_CHECK=true react-scripts eject",
"dev": "vite",
"build-vite": "tsc && vite build --mode dev --debug",
"serve": "vite preview"
},
"eslintConfig": {
"ignorePatterns": [
"**/build/*",
"**/dist/*",
"**/node_modules/*",
"vite.config.ts"
],
"extends": [
"react-app",
"react-app/jest"
]
},
"author": "Denis Oblogin <[email protected]> (https://github.com/ukrbublik)",
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/pickers": "^3.3.10",
"antd": "^4.16.13",
"material-ui-confirm": "^2.1.2",
"react": "^16.14.0",
"react-awesome-query-builder": "^4.7.0",
"react-dom": "^16.14.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@vitejs/plugin-react-refresh": "^1.3.6",
"vite": "^2.5.0",
"react-scripts": "^4.0.3",
"@types/lodash": "^4.14.170",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"typescript": "^4.4.4"
}
}