forked from Kiho/react-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.39 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
{
"name": "cb-react-form-builder",
"version": "0.1.38",
"description": "A complete form builder for react.",
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codebrahma/react-form-builder.git"
},
"files": [
"lib",
"dist"
],
"keywords": [
"react",
"react-component",
"form",
"builder",
"ui",
"drag",
"drop"
],
"author": "Codebrahma",
"dependencies": {
"classnames": "^2.2.5",
"draft-js": "^0.10.0",
"draftjs-to-html": "^0.6.1",
"es6-promise": "^4.2.4",
"fbemitter": "^2.1.1",
"immutability-helper": "^2.6.6",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.22.1",
"prop-types": "^15.6.1",
"react-bootstrap-slider": "^2.1.5",
"react-datepicker": "^1.7.0",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-draft-wysiwyg": "^1.12.13",
"react-select": "1.2.1",
"react-signature-canvas": "^1.0.0-alpha.1",
"react-textarea-autosize": "^6.0.0",
"xss": "^1.0.3"
},
"peerDependencies": {
"react": "16.3.x",
"react-dom": "16.3.x"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.26.0",
"css-loader": "^0.28.10",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"express": "^4.16.3",
"node-sass": "^4.7.2",
"react": "16.3.x",
"react-dom": "16.3.x",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.2",
"webpack": "^4.0.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"scripts": {
"package": "npm run build:lib && npm publish",
"build": "webpack -p --config webpack.production.config.js",
"build:dev": "webpack --mode development",
"build:style": "node-sass ./scss/application.scss dist/app.css --output-style compressed",
"build:lib": "npm run transpile && npm run build:style",
"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"
}
}