-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.26 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.26 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "formber",
"version": "0.0.6",
"description": "form builder for 2b business",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"esnext": "dist/index.js",
"types": "src/index.ts",
"scripts": {
"demo": "vite dev -c scripts/vite.demo.config.ts",
"build": "tsc --noEmit && vite build -c scripts/vite.config.ts",
"lint": "eslint './{src,scripts}/**/*.{ts,tsx}' --fix",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"lint-staged": {
"*.{tsx,ts}": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binfoe/formber.git"
},
"keywords": [
"former",
"form",
"form-builder",
"react"
],
"author": "YuhangGe <abeyuhang@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/binfoe/formber/issues"
},
"homepage": "https://github.com/binfoe/formber#readme",
"devDependencies": {
"@ant-design/colors": "^7.0.2",
"@iconify/json": "^2.2.209",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"antd": "^5.17.2",
"autoprefixer": "^10.4.19",
"date-fns": "^3.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"rc-picker": "^4.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.4",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"type-fest": "^4.18.2",
"typescript": "^5.4.5",
"unplugin-icons": "^0.19.0",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2"
},
"peerDependencies": {
"antd": "*",
"date-fns": "*",
"rc-picker": "*",
"react": "*",
"react-hook-form": "*"
}
}