-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.22 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
{
"name": "interspect",
"productName": "Interspect",
"version": "1.0.0",
"description": "An tool to test communication between your microservices",
"main": "public/main.js",
"scripts": {
"test": "mocha",
"start": "ELECTRON_IS_DEV=0 electron .",
"build": "webpack --mode production",
"dev": "webpack-dev-server --watch --hot --inline --mode development",
"lint": "npx eslint '**/*.{tsx,ts,js,jsx}' --fix --quiet",
"create_electron": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=public/icon.icns --prune=true --out=release-builds"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/Interspect.git"
},
"keywords": [
"microservices"
],
"author": "Joe Pavlisko, Conor Sexton, Joel Rivera, Donald Blanc",
"license": "ISC",
"bugs": {
"url": "https://github.com/oslabs-beta/Interspect/issues"
},
"homepage": "https://interspect.io/",
"dependencies": {
"body-parser": "^1.19.0",
"chart.js": "^1.1.1",
"electron": "^9.1.0",
"electron-is-dev": "^1.1.0",
"express": "^4.16.4",
"react": "^16.8.6",
"react-chartjs": "^1.2.0",
"react-diff-viewer": "^1.1.0",
"react-dom": "^16.8.6",
"react-feather": "^1.1.6",
"react-json-view": "^1.19.1",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"styled-components": "^4.3.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@hot-loader/react-dom": "^16.8.6",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"css-loader": "^2.1.1",
"electron-packager": "^14.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"mocha": "^6.1.4",
"mocha-loader": "^2.0.1",
"react-hot-loader": "^4.9.0",
"spectron": "^5.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.6.0"
}
}