-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "@ysanson/simple-form-builder",
"version": "0.0.1",
"description": "A simple form builder based on React Hook form and Bootstrap components.",
"scripts": {
"rollup": "rollup -c",
"test": "test"
},
"keywords": [
"react",
"form",
"builder",
"bootstrap"
],
"author": "Yvan SANSON",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/react": "^18.0.26",
"@types/uuid": "^9.0.0",
"eslint": "^8.32.0",
"eslint-plugin-react": "^7.32.1",
"react": "^18.2.0",
"react-bootstrap": "^2.7.0",
"react-hook-form": "^7.42.1",
"react-sortablejs": "^6.1.4",
"rollup": "^3.10.1",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"typescript-eslint": "^0.0.1-alpha.0",
"uuid": "^9.0.0"
},
"peerDependencies": {
"bootstrap": "x",
"react": "x",
"react-bootstrap": "^2.7.0",
"react-hook-form": "^7.42.1"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com/ysanson"
}
}