-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.63 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
{
"name": "nats-streaming-ui",
"version": "0.3.1",
"description": "GUI for Nats Streaming server",
"main": "./server/index.js",
"keywords": [
"ui",
"gui",
"nats",
"streaming",
"nats-streaming",
"nats-streaming-ui",
"nats-streaming-gui"
],
"author": "Serhii Harkusha",
"contributors": [
"Serhii Harkusha",
"Juan Navarro"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://gitlab.com/united-travel-tickets/common/nats-streaming-ui.git"
},
"engines": {
"node": ">13.0.0"
},
"scripts": {
"start:server:dev": "DEBUG=* nodemon ./server/index.js",
"start:front:dev": "react-scripts start",
"build:react": "react-scripts build",
"eject:react": "react-scripts eject"
},
"dependencies": {
"@material-ui/core": "4.10.1",
"@material-ui/icons": "4.9.1",
"@material-ui/styles": "4.10.0",
"axios": "^0.19.2",
"clsx": "^1.1.1",
"finalhandler": "^1.1.2",
"nats-nerve": "^1.0.4",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"serve-static": "^1.14.1",
"shortid": "^2.2.15",
"socket.io": "2.3.0",
"socket.io-client": "2.3.0",
"typeface-roboto": "^0.0.75"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}