-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.26 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
{
"name": "react-jsondocs-viewer",
"version": "0.0.1",
"description": "A ReactJS webserver for the arbitrary JSON-stored documentation",
"main": "index.js",
"author": "M4Numbers <m4numbers@gmail.com>",
"license": "MIT",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "webpack-dev-server --inline --history-api-fallback",
"start:prod": "webpack -p",
"build": "webpack"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.2.0",
"babel-loader": "^8.0.4",
"webpack": "^4.28.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"enhanced-resolve": "^3.4.1",
"if-env": "^1.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-markdown": "^2.5.0",
"react-router-dom": "^4.1.2",
"react-search-input": "^0.11.2",
"whatwg-fetch": "^2.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/M4Numbers/react-jsondocs-viewer.git"
}
}