@micromerce/formbuilder-react 1.0.440
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/formbuilder.js +241 -0
- package/dist/formbuilder.js.LICENSE.txt +48 -0
- package/dist/formbuilder.js.map +1 -0
- package/package.json +105 -0
package/package.json
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
{
|
2
|
+
"name": "@micromerce/formbuilder-react",
|
3
|
+
"version": "1.0.440",
|
4
|
+
"description": "creates a form based on configuration",
|
5
|
+
"main": "dist/formbuilder.js",
|
6
|
+
"types": "dist/index.d.ts",
|
7
|
+
"directories": {
|
8
|
+
"lib": "dist"
|
9
|
+
},
|
10
|
+
"files": [
|
11
|
+
"dist"
|
12
|
+
],
|
13
|
+
"scripts": {
|
14
|
+
"test": "jest --runInBand --no-cache",
|
15
|
+
"storybook": "npm run lint; start-storybook -p 6006",
|
16
|
+
"build-storybook": "npm run lint; build-storybook -o ./docs/storybook",
|
17
|
+
"watch": "npm run lint && webpack watch --config webpack.dev.js",
|
18
|
+
"build": "npm run lint && npm run test && webpack build --config webpack.prod.js",
|
19
|
+
"build:analyze": "webpack build --analyze --config webpack.prod.js",
|
20
|
+
"lint": "eslint src/",
|
21
|
+
"clean": "rimraf dist",
|
22
|
+
"copy-component-styles": "copyfiles -u 1 ./src/components/**/*.module.scss ./dist",
|
23
|
+
"copy-global-styles": "copyfiles -u 1 ./src/styles/**/*.module.scss ./dist",
|
24
|
+
"build-tsc": "npm run clean && npm run copy-component-styles && npm run copy-global-styles && tsc -p tsconfig.json"
|
25
|
+
},
|
26
|
+
"author": "",
|
27
|
+
"license": "ISC",
|
28
|
+
"dependencies": {
|
29
|
+
"@codemirror/lang-html": "^6.4.3",
|
30
|
+
"@codemirror/lang-json": "^6.0.1",
|
31
|
+
"@codemirror/lang-markdown": "^6.1.0",
|
32
|
+
"@codemirror/language": "^6.8.0",
|
33
|
+
"@emotion/react": "^11.11.1",
|
34
|
+
"@emotion/styled": "^11.11.0",
|
35
|
+
"@lezer/highlight": "^1.1.6",
|
36
|
+
"@mui/icons-material": "^5.14.19",
|
37
|
+
"@mui/material": "^5.14.20",
|
38
|
+
"@react-icons/all-files": "^4.1.0",
|
39
|
+
"@uiw/react-codemirror": "^4.19.16",
|
40
|
+
"classnames": "^2.3.1",
|
41
|
+
"html-to-text": "^9.0.5",
|
42
|
+
"lodash": "^4.17.21",
|
43
|
+
"qs": "^6.10.3",
|
44
|
+
"react-date-range": "^1.4.0",
|
45
|
+
"react-quill": "^2.0.0",
|
46
|
+
"showdown": "^2.1.0",
|
47
|
+
"styled-components": "^5.3.5",
|
48
|
+
"turndown": "^7.1.2",
|
49
|
+
"usehooks-ts": "^2.5.1",
|
50
|
+
"uuid": "^8.3.2"
|
51
|
+
},
|
52
|
+
"peerDependencies": {
|
53
|
+
"react": ">=17.0.2",
|
54
|
+
"react-dom": ">=17.0.2"
|
55
|
+
},
|
56
|
+
"devDependencies": {
|
57
|
+
"@babel/core": "^7.17.5",
|
58
|
+
"@storybook/addon-actions": "^6.4.19",
|
59
|
+
"@storybook/addon-essentials": "^6.4.19",
|
60
|
+
"@storybook/addon-interactions": "^6.4.19",
|
61
|
+
"@storybook/addon-links": "^6.4.19",
|
62
|
+
"@storybook/builder-webpack5": "^6.4.19",
|
63
|
+
"@storybook/manager-webpack5": "^6.4.19",
|
64
|
+
"@storybook/preset-scss": "^1.0.3",
|
65
|
+
"@storybook/react": "^6.4.19",
|
66
|
+
"@storybook/testing-library": "^0.0.9",
|
67
|
+
"@testing-library/jest-dom": "^5.16.5",
|
68
|
+
"@testing-library/react": "^12.1.3",
|
69
|
+
"@testing-library/react-hooks": "^8.0.1",
|
70
|
+
"@types/jest": "^27.4.1",
|
71
|
+
"@types/lodash": "^4.14.191",
|
72
|
+
"@types/react": "^17.0.39",
|
73
|
+
"@types/react-date-range": "^1.4.4",
|
74
|
+
"@types/react-dom": "^17.0.11",
|
75
|
+
"@types/styled-components": "^5.1.25",
|
76
|
+
"@types/uuid": "^8.3.4",
|
77
|
+
"@typescript-eslint/parser": "^5.17.0",
|
78
|
+
"babel-loader": "^8.2.3",
|
79
|
+
"copyfiles": "^2.4.1",
|
80
|
+
"eslint": "^7.12.1",
|
81
|
+
"eslint-config-standard": "^16.0.3",
|
82
|
+
"eslint-plugin-jest": "^26.1.3",
|
83
|
+
"eslint-plugin-react": "^7.29.4",
|
84
|
+
"eslint-plugin-standard": "^4.1.0",
|
85
|
+
"eslint-plugin-storybook": "^0.5.11",
|
86
|
+
"eslint-plugin-testing-library": "^5.1.0",
|
87
|
+
"eslint-webpack-plugin": "^3.1.1",
|
88
|
+
"identity-obj-proxy": "^3.0.0",
|
89
|
+
"jest": "^27.5.1",
|
90
|
+
"postcss": "^8.4.7",
|
91
|
+
"react": "^17.0.2",
|
92
|
+
"react-dom": "^17.0.2",
|
93
|
+
"sass": "^1.49.9",
|
94
|
+
"sass-loader": "^12.6.0",
|
95
|
+
"storybook-css-modules-preset": "^1.1.1",
|
96
|
+
"ts-jest": "^27.1.3",
|
97
|
+
"ts-loader": "^9.2.6",
|
98
|
+
"ts-node": "^10.7.0",
|
99
|
+
"typescript": "^4.5.5",
|
100
|
+
"webpack": "^5.69.1",
|
101
|
+
"webpack-bundle-analyzer": "^4.8.0",
|
102
|
+
"webpack-cli": "^4.9.2",
|
103
|
+
"webpack-merge": "^5.8.0"
|
104
|
+
}
|
105
|
+
}
|