-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.34 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "hooksponge",
"version": "1.5.0",
"description": "Webhook trigger inspector",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node index.js",
"dev": "cross-env NODE_ENV=development node index.js",
"build": "cross-env NODE_ENV=production webpack-cli -r esm --mode production",
"lint": "eslint --version && eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "David Csirmaz",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:csimi/hooksponge.git"
},
"dependencies": {
"body-parser": "^1.18.3",
"cross-env": "^5.2.0",
"env-var": "^3.5.0",
"esm": "^3.2.22",
"express": "^4.16.4",
"express-async-router": "^0.1.15",
"express-sse": "^0.5.0",
"express-urlrewrite": "^1.2.0",
"ioredis": "^4.9.0",
"memoize-one": "^5.0.4",
"pem": "^1.14.2"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/polyfill": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@csimi/eslint-config": "^1.0.0",
"axios": "^0.21.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chokidar": "^2.1.5",
"clear-module": "^3.1.0",
"cookie": "^0.3.1",
"css-loader": "^2.1.1",
"date-fns": "^1.30.1",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"normalize.css": "^8.0.1",
"postcss-csso": "^3.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"prop-types": "^15.7.2",
"qs": "^6.7.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.8.2",
"react-inspector": "^3.0.2",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-saga": "^1.0.2",
"redux-thunk": "^2.3.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-middleware": "^3.6.1",
"webpack-dev-server": "^3.2.1",
"webpack-hot-middleware": "^2.24.3",
"webpack-plugin-hash-output": "^3.2.1",
"webpack-subresource-integrity": "^1.3.2"
}
}