forked from Kiho/react-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.35 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "react-form-builder2",
"version": "0.13.1",
"description": "A complete form builder for react.",
"main": "lib/index.js",
"types": "types/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kiho/react-form-builder.git"
},
"files": [
"lib",
"dist",
"types"
],
"keywords": [
"react",
"react-component",
"form",
"builder",
"ui",
"drag",
"drop"
],
"engines": {
"node": ">=12.0.0"
},
"author": "Kiho Chang",
"contributors": [
{
"name": "Zach Robichaud",
"email": "[email protected]",
"url": "https://turtlebytes.com"
}
],
"dependencies": {
"beedle": "^0.8.1",
"classnames": "^2.2.6",
"date-fns": "^2.16.1",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.8.4",
"es6-promise": "^4.2.8",
"fbemitter": "^3.0.0",
"file-saver": "^2.0.5",
"immutability-helper": "^3.1.1",
"isomorphic-fetch": "^3.0.0",
"prop-types": "^15.7.2",
"react-bootstrap-slider": "^2.2.3",
"react-datepicker": "^3.4.1",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-draft-wysiwyg": "^1.14.7",
"react-intl": "^5.24.3",
"react-select": "^3.2.0",
"react-signature-canvas": "^1.0.3",
"react-textarea-autosize": "^7.1.2",
"xss": "^1.0.8"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-json-strings": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.14.5",
"@babel/runtime-corejs2": "^7.12.5",
"add": "^2.0.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"copyfiles": "^2.4.1",
"css-loader": "^3.6.0",
"ejs": "^2.7.4",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"express": "^4.17.1",
"multer": "^1.4.2",
"node-sass": "^7.0.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^3.0.2",
"sass": "^1.52.3",
"sass-loader": "^10.0.0",
"style-loader": "^1.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"build": "webpack --mode production --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",
"clean": "rimraf dist",
"copy:dist": "copyfiles -f \"./dist/*\" \"./public/dist\"",
"prepublishOnly": "npm run clean && npm run build:lib && npm run build",
"watch": "webpack --watch",
"start": "webpack-dev-server --hot --mode development",
"serve:api": "node server/index.js",
"pretranspile": "rimraf lib",
"transpile": "babel --out-dir lib src --copy-files"
}
}