-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.11 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.11 KB
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
{
"name": "redoc-editor",
"version": "1.1.1",
"private": false,
"author": "pointnet",
"description": "Redoc settings/theme editor in React.",
"keywords": [
"react",
"redoc",
"material-ui"
],
"repository": {
"type": "git",
"url": "https://github.com/pointnet/redoc-editor.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pointnet/redoc-editor/issues"
},
"scripts": {
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prettier:check": "prettier --check src/**/*.js",
"prettier:write": "prettier --write src/**/*.js"
},
"homepage": "https://pointnet.github.io/redoc-editor",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@material-ui/core": "^4.2.1",
"@material-ui/icons": "^4.2.1",
"axios": "^0.19.0",
"core-js": "^3.1.4",
"deep-object-diff": "^1.1.0",
"immer": "^3.1.3",
"mdi-material-ui": "^6.2.0",
"mutation-observer": "^1.0.3",
"notistack": "^0.8.8",
"polished": "^3.4.1",
"query-string": "^6.8.1",
"react": "^16.8.6",
"react-app-polyfill": "^1.0.1",
"react-color": "^2.17.3",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.8.6",
"react-highlight": "^0.12.0",
"react-popover": "^0.5.10",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"yup": "^0.27.0"
},
"devDependencies": {
"gh-pages": "^2.0.1",
"husky": "^3.0.1",
"lint-staged": "^9.2.0",
"prettier": "1.18.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"ie > 9",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}