-
-
Notifications
You must be signed in to change notification settings - Fork 504
/
package.json
64 lines (64 loc) · 1.92 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
{
"name": "@react-awesome-query-builder/sandbox",
"version": "6.6.4",
"description": "Demo for @react-awesome-query-builder",
"repository": {
"type": "git",
"url": "https://github.com/ukrbublik/react-awesome-query-builder.git",
"directory": "packages/sandbox"
},
"license": "MIT",
"author": "Denis Oblogin <[email protected]> (https://github.com/ukrbublik)",
"main": "src/index.tsx",
"scripts": {
"build": "tsc && vite build --mode dev",
"build-prod": "tsc && vite build --mode production",
"eslint": "eslint --ext .jsx --ext .js --ext .tsx --ext .ts ./src/",
"preinstall": "node ./scripts/patch-versions.js",
"lint": "npm run eslint && npm run tsc",
"lint-fix": "eslint --ext .jsx --ext .js --ext .tsx --ext .ts --fix ./src/",
"preview": "vite preview",
"start-prod": "npm run build-prod && npm run preview",
"start": "vite",
"tsc": "tsc -p . --noEmit"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@ant-design/icons": "^5.3.7",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/base": "^5.0.0-beta.40",
"@mui/icons-material": "^5.15.18",
"@mui/material": "^5.15.18",
"@mui/system": "^5.15.15",
"@mui/x-date-pickers": "^7.9.0",
"@react-awesome-query-builder/antd": "workspace:^",
"@react-awesome-query-builder/mui": "workspace:^",
"antd": "^5.18.3",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@types/lodash": "^4.14.170",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"sass": "^1.77.2",
"typescript": "~5.4.5",
"vite": "^5.2.14"
},
"readme": "README.md"
}