forked from Kiho/react-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.96 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
{
"name": "react-form-builder2",
"version": "0.5.12",
"description": "A complete form builder for react.",
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kiho/react-form-builder.git"
},
"files": [
"lib",
"dist"
],
"keywords": [
"react",
"react-component",
"form",
"builder",
"ui",
"drag",
"drop"
],
"author": "Kiho Chang",
"dependencies": {
"beedle": "^0.8.1",
"classnames": "^2.2.6",
"date-fns": "^2.6.0",
"draft-js": "^0.11.1",
"draftjs-to-html": "^0.8.4",
"es6-promise": "^4.2.8",
"fbemitter": "^2.1.1",
"immutability-helper": "^3.0.1",
"isomorphic-fetch": "^2.2.1",
"prop-types": "^15.7.2",
"react-bootstrap-slider": "^2.2.2",
"react-datepicker": "^2.9.6",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-draft-wysiwyg": "^1.13.2",
"react-select": "^3.0.8",
"react-signature-canvas": "^1.0.3",
"react-star-rating": "^1.4.2",
"react-textarea-autosize": "^7.1.2",
"xss": "^1.0.6"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/runtime-corejs2": "^7.6.3",
"add": "^2.0.6",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"copyfiles": "^2.1.1",
"css-loader": "^3.2.0",
"ejs": "^2.7.1",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"express": "^4.17.1",
"multer": "^1.4.2",
"node-sass": "^4.13.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"scripts": {
"build": "webpack -p --config webpack.production.config.js",
"build:dev": "webpack --mode development",
"build:umd": "webpack --mode development --config webpack.production.config.js",
"build:style": "node-sass ./scss/application.scss dist/app.css --output-style compressed",
"build:lib": "npm run transpile && npm run build:style",
"build:dist": "npm run build && npm run copy:dist",
"copy:dist": "copyfiles -f \"./dist/*\" \"./public/dist\"",
"prepublish": "npm run build:lib && npm run build",
"watch": "webpack --watch",
"start": "webpack-dev-server --hot --inline --mode development",
"serve:api": "node server/index.js",
"pretranspile": "rimraf lib",
"transpile": "babel --out-dir lib src --copy-files"
}
}