-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.83 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
{
"name": "express-middleware-visualizer",
"version": "0.1.3",
"description": "Visualizes routes and their corresponding global middleware-stack of an express-app.",
"keywords": [
"node",
"express",
"middleware",
"middlewarestack",
"middleware-stack",
"middleware stack",
"middleware-stack-visualizer",
"express-middleware-visualizer",
"express-middleware-stack",
"express-middleware-stack-visualizer",
"express-routes",
"express routes"
],
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --watch",
"build_prod": "babel src --presets babel-preset-es2015 --out-dir dist && webpack && npm run cp_html",
"cp_html": "cp src_frontend/index.html dist/public",
"prepublish": "npm run build_prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuiSlacker/express-visualizer.git"
},
"author": "Ludwig Goohsen",
"license": "MIT",
"bugs": {
"url": "https://github.com/LuiSlacker/express-visualizer/issues"
},
"homepage": "https://github.com/LuiSlacker/express-visualizer#readme",
"dependencies": {
"axios": "^0.16.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.7.0",
"extract-text-webpack-plugin": "^3.0.1",
"jsx-loader": "^0.13.2",
"node-sass": "^4.5.3",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^1.3.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.6.0"
}
}