@bigbinary/neeto-form-frontend 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,124 @@
1
+ {
2
+ "name": "@bigbinary/neeto-form-frontend",
3
+ "version": "1.0.0",
4
+ "description": "Neeto Form Engine Frontend",
5
+ "author": "BigBinary",
6
+ "license": "MIT",
7
+ "repository": "https://github.com/bigbinary/neeto-form-frontend",
8
+ "main": "dist/index.js",
9
+ "module": "dist/index.js",
10
+ "engines": {
11
+ "node": ">=10"
12
+ },
13
+ "scripts": {
14
+ "build": "NODE_ENV=production rollup -c --environment production",
15
+ "prepare": "husky install"
16
+ },
17
+ "lint-staged": {
18
+ "{src,example}/**/*.{js,jsx,json}": [
19
+ "prettier --write",
20
+ "eslint --fix"
21
+ ],
22
+ "{package.json,.eslintrc.js,.prettierrc.js}": [
23
+ "prettier --write",
24
+ "eslint --fix"
25
+ ],
26
+ ".eslint-rules/**/*": [
27
+ "prettier --write",
28
+ "eslint --fix"
29
+ ]
30
+ },
31
+ "devDependencies": {
32
+ "@babel/core": "^7.13.15",
33
+ "@babel/eslint-parser": "^7.17.0",
34
+ "@babel/plugin-proposal-class-properties": "^7.13.0",
35
+ "@babel/preset-env": "^7.13.15",
36
+ "@babel/preset-react": "^7.16.7",
37
+ "@bigbinary/neeto-commons-frontend": "^2.0.17",
38
+ "@bigbinary/neeto-editor": "^1.0.3",
39
+ "@bigbinary/neeto-icons": "^1.8.35",
40
+ "@bigbinary/neetoui": "^4.0.6",
41
+ "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
42
+ "@rollup/plugin-alias": "^3.1.9",
43
+ "@rollup/plugin-babel": "^5.3.1",
44
+ "@rollup/plugin-commonjs": "^22.0.0",
45
+ "@rollup/plugin-json": "^4.1.0",
46
+ "@rollup/plugin-node-resolve": "^13.3.0",
47
+ "@rollup/plugin-replace": "^4.0.0",
48
+ "@svgr/rollup": "^6.2.1",
49
+ "antd": "^4.24.2",
50
+ "babel-loader": "^8.2.2",
51
+ "classnames": "^2.3.1",
52
+ "css-loader": "^4.3.0",
53
+ "css-minimizer-webpack-plugin": "1.3.0",
54
+ "dayjs": "^1.11.0",
55
+ "eslint": "^8.12.0",
56
+ "eslint-config-prettier": "^8.5.0",
57
+ "eslint-plugin-cypress": "^2.12.1",
58
+ "eslint-plugin-import": "^2.25.4",
59
+ "eslint-plugin-jam3": "^0.2.3",
60
+ "eslint-plugin-json": "^3.1.0",
61
+ "eslint-plugin-prettier": "^4.0.0",
62
+ "eslint-plugin-promise": "^6.0.0",
63
+ "eslint-plugin-react": "^7.29.4",
64
+ "eslint-plugin-react-hooks": "4.4.0",
65
+ "eslint-plugin-unused-imports": "^2.0.0",
66
+ "file-loader": "^6.1.1",
67
+ "formik": "^2.2.9",
68
+ "html-loader": "^1.3.1",
69
+ "html-webpack-plugin": "^4.5.0",
70
+ "husky": "^7.0.4",
71
+ "lint-staged": "^12.3.7",
72
+ "mini-css-extract-plugin": "0.9.0",
73
+ "postcss": "^8.2.15",
74
+ "postcss-loader": "^4.0.3",
75
+ "postcss-preset-env": "^6.7.0",
76
+ "prettier": "^2.6.1",
77
+ "prop-types": "^15.8.1",
78
+ "ramda": "^0.28.0",
79
+ "react": "^17.0.1",
80
+ "react-dom": "^17.0.1",
81
+ "react-refresh": "^0.11.0",
82
+ "react-router-dom": "5.3.0",
83
+ "react-router-nav-prompt": "0.4.1",
84
+ "react-scripts": "4.0.3",
85
+ "react-svg-loader": "^3.0.3",
86
+ "react-toastify": "8.0.2",
87
+ "rollup": "^2.73.0",
88
+ "rollup-plugin-peer-deps-external": "^2.2.4",
89
+ "rollup-plugin-styles": "^4.0.0",
90
+ "sass": "^1.26.11",
91
+ "sass-loader": "^10.0.2",
92
+ "style-loader": "^2.0.0"
93
+ },
94
+ "peerDependencies": {
95
+ "@bigbinary/neeto-commons-frontend": "latest",
96
+ "@bigbinary/neeto-editor": "latest",
97
+ "@bigbinary/neeto-icons": "latest",
98
+ "@bigbinary/neetoui": "latest",
99
+ "antd": "latest",
100
+ "classnames": "^2.3.1",
101
+ "dayjs": "^1.11.0",
102
+ "formik": "^2.2.9",
103
+ "ramda": "^0.28.0",
104
+ "react": "17.0.2",
105
+ "react-dom": "17.0.2",
106
+ "react-router-dom": "5.3.0",
107
+ "yup": "^0.32.11"
108
+ },
109
+ "files": [
110
+ "dist"
111
+ ],
112
+ "dependencies": {
113
+ "@babel/runtime": "^7.17.9",
114
+ "axios": "^0.27.2",
115
+ "i18next": "^21.8.0",
116
+ "libphonenumber-js": "^1.10.9",
117
+ "react-beautiful-dnd": "^13.1.0",
118
+ "react-i18next": "^11.16.9",
119
+ "react-query": "^3.39.0",
120
+ "react-select": "^5.3.2",
121
+ "tailwindcss": "^3.0.24",
122
+ "yup": "^0.32.11"
123
+ }
124
+ }