This repository was archived by the owner on Jul 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.45 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
{
"name": "react-ant-form-builder",
"version": "3.26.19",
"description": "A drag and drop form builder for Ant Design antd 3x",
"main": "dist/index.js",
"author": "Naod Yeheyes <naodya@gmail.com>",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development",
"transpile": "./node_modules/.bin/babel src -d dist --copy-files",
"prepublishOnly": "yarn transpile",
"build": "webpack --mode production",
"deploy": "gh-pages -d example/dist",
"publish-demo": "yarn prepublishOnly && yarn build && yarn deploy"
},
"keywords": [
"ant",
"design",
"form",
"form-builder",
"react"
],
"repository": {
"type": "git",
"url": "git+https://github.com/moxit-io/react-ant-form-builder.git"
},
"bugs": {
"url": "https://github.com/moxit-io/react-ant-form-builder/issues"
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"array-move": "^2.1.0",
"lodash": "^4.17.15",
"moment-timezone": "^0.5.31",
"react-json-pretty": "^2.2.0",
"react-sortable-hoc": "^1.11.0"
},
"peerDependencies": {
"antd": "<=3.26.18",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"antd": "^3.26.18",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.2",
"css-loader": "^3.2.0",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-loader": "^3.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.5",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}