forked from NarasimhaReddyY/cb-react-forms
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.45 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.45 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
83
{
"name": "cb-react-forms",
"version": "1.1.0",
"description": "A complete form builder for react.",
"main": "dist/index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --mode development --open --hot",
"build": "cross-env NODE_ENV=production webpack -p --config webpack.prod.js",
"package": "npm run build && npm publish",
"lint": "eslint ./ --fix && echo \"No eslint errors!\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "codebrahma",
"license": "MIT",
"keywords": [
"react",
"react-component",
"form",
"builder",
"ui",
"drag",
"drop"
],
"dependencies": {
"draft-js": "^0.10.5",
"draftjs-to-html": "^0.8.4",
"html-to-draftjs": "^1.4.0",
"immutability-helper": "^3.0.0",
"lodash": "^4.17.11",
"lodash.flow": "^3.5.0",
"react-date-picker": "^7.5.1",
"react-dnd": "^7.4.5",
"react-dnd-html5-backend": "^7.4.4",
"react-draft-wysiwyg": "^1.13.2",
"react-rangeslider": "^2.2.0",
"react-redux": "^7.0.3",
"react-select": "^3.0.3",
"react-signature-canvas": "^1.0.2",
"react-star-ratings": "^2.3.0",
"redux": "^4.0.1",
"redux-form": "^8.2.3",
"uuid": "^3.3.2"
},
"peerDependencies": {
"react": "16.8.x",
"react-dom": "16.8.x"
},
"repository": {
"url": "https://github.com/Codebrahma/cb-react-forms"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-module-resolver": "^3.1.2",
"compression-webpack-plugin": "^2.0.0",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.5.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"redux-devtools-extension": "^2.13.8",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.1",
"webpack": "^4.28.4",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7",
"webpack-merge": "^4.2.1"
}
}