-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
111 lines (111 loc) · 3.84 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@onebeyond/react-form-builder",
"version": "2.3.3",
"description": "React from builder using json schema",
"author": "One Beyond",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/onebeyond/react-form-builder.git"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"source": "src/index.js",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"dev": "NODE_ENV=development rollup --config --configDebug -w",
"prebuild": "rimraf dist",
"build": "rollup --config",
"prepare": "run-s build && husky install",
"test": "npx @onebeyond/license-checker --failOn AGPL-1.0-or-later --disableReport --errorReportFileName license-error | run-s test:unit test:lint test:build",
"test:ci": "cross-env CI=1 run-s test:unit test:lint test:build",
"coverage": "npm run test:unit -- --coverage",
"test:build": "run-s build",
"test:lint": "eslint src --ext .js,.jsx --config .eslintrc --ignore-path .eslintignore --cache",
"test:unit": "react-scripts test --env=jsdom --color --verbose --runInBand",
"test:watch": "react-scripts test --env=jsdom",
"eslint:fix": "eslint . --ext .js,.jsx --fix",
"lint": "npm run test:lint",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o ./public",
"ncu": "npx ncu"
},
"peerDependencies": {
"react": "^18.0.6"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-react": "^7.24.1",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@hookform/devtools": "^4.3.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@sheerun/mutationobserver-shim": "^0.3.3",
"@storybook/addon-actions": "^7.6.17",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/react": "^7.6.17",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.3.0",
"cross-env": "^7.0.3",
"date-fns": "^2.30.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "^4.1.0",
"gh-pages": "^2.2.0",
"husky": "^9.0.11",
"joi": "^17.12.3",
"npm-check-updates": "^16.14.18",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"react-select-event": "^5.5.1",
"rollup": "^2.36.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-replace": "^2.2.0"
},
"files": [
"dist"
],
"dependencies": {
"countries-list": "^3.1.0",
"country-region-data": "^3.0.0",
"debounce-promise": "^3.1.2",
"i18n-iso-countries": "^7.11.0",
"install": "^0.13.0",
"react-datepicker": "^4.23.0",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.51.2",
"react-markdown": "^5.0.3",
"react-phone-number-input": "^3.3.12",
"react-select": "^5.8.0",
"react-ymd-date-select": "^0.3.0",
"rimraf": "^5.0.5",
"theme-ui": "^0.15.7"
}
}