-
-
Notifications
You must be signed in to change notification settings - Fork 504
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
{
"name": "@react-awesome-query-builder/sandbox-simple",
"version": "6.6.12",
"description": "Simple demo for @react-awesome-query-builder",
"repository": {
"type": "git",
"url": "https://github.com/ukrbublik/react-awesome-query-builder.git",
"directory": "packages/sandbox_simple"
},
"license": "MIT",
"author": "Denis Oblogin <[email protected]> (https://github.com/ukrbublik)",
"main": "src/index.jsx",
"scripts": {
"build": "vite build --mode dev",
"build-prod": "vite build --mode production",
"eslint": "eslint --ext .jsx --ext .js ./src/",
"preinstall": "node ./scripts/patch-versions.js",
"lint": "npm run eslint",
"lint-fix": "eslint --ext .jsx --ext .js --fix ./src/",
"preview": "vite preview",
"start-prod": "npm run build-prod && npm run preview",
"start": "vite"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@react-awesome-query-builder/ui": "workspace:^",
"lodash": "^4.17.21",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"sass": "^1.77.2",
"vite": "^5.2.14"
},
"readme": "README.md"
}