-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.63 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
{
"name": "react-input-json",
"version": "0.1.11",
"description": "React component to input custom JSON",
"keywords": [
"field",
"form",
"input",
"json",
"react"
],
"files": [
"dist/"
],
"main": "dist/index.js",
"scripts": {
"build": "webpack --config webpack.prod.js --hide-modules --progress",
"prepublishOnly": "npm run build && git push && git push --tags",
"start": "webpack-dev-server --config webpack.dev.js"
},
"author": {
"name": "Alexandr Antonov",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahtohbi4/react-input-json.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ahtohbi4/react-input-json/issues"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.3.0",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^1.0.0",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.3",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.2.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}