forked from tdkn/json-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.39 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.39 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
{
"name": "json-viewer",
"version": "1.0.0",
"homepage": "https://json.buckmoon.io",
"bugs": "https://github.com/buckmoon/json-viewer/issues",
"license": "MIT",
"description": "Online JSON Viewer & Path Watcher",
"keywords": [
"json"
],
"main": "src/index.js",
"repository": "buckmoon/json-viewer",
"dependencies": {
"@material-ui/core": "^3.8.3",
"@material-ui/icons": "3.0.2",
"codemirror": "^5.42.2",
"lodash.debounce": "^4.0.8",
"lodash.get": "^4.4.2",
"mobx": "5.8.0",
"mobx-react": "5.4.3",
"mobx-state-tree": "3.10.0",
"normalize.css": "8.0.1",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-codemirror2": "5.1.0",
"react-dom": "^16.7.0",
"react-inspector": "2.3.1",
"react-split-pane": "0.1.85",
"recompose": "0.30.0",
"store": "2.0.12"
},
"devDependencies": {
"node-sass": "4.11.0",
"prettier": "^1.15.3",
"react-scripts": "^2.1.3",
"source-map-explorer": "^1.6.0"
},
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"prettier": {
"semi": false,
"singleQuote": true,
"jsxBracketSameLine": true
}
}