-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.67 KB
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
{
"name": "blitz-form-builder",
"author": "Hamdi Islam",
"version": "0.0.10",
"keywords": [
"mui",
"form",
"builder",
"react-form-builder",
"blitz-form-builder",
"react-hook-form",
"react"
],
"description": "A simple form builder to create and manage complex forms",
"type": "module",
"files": [
"dist"
],
"main": "./dist/blitz-form-builder.umd.cjs",
"module": "./dist/blitz-form-builder.js",
"exports": {
".": {
"import": "./dist/blitz-form-builder.js",
"require": "./dist/blitz-form-builder.umd.cjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/hamdi-islam/blitz-form-builder.git"
},
"scripts": {
"prebuild": "rm -rf dist",
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"prepublish": "yarn build"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@hookform/resolvers": "^3.9.1",
"@mui/material": "^6.4.0",
"@mui/x-date-pickers": "^7.23.6",
"@types/node": "^22.10.1",
"moment": "^2.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.2",
"vite-tsconfig-paths": "^5.1.3",
"yup": "^1.5.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0"
}
}