-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "krowser",
"version": "0.0.1",
"description": "",
"main": "index.js",
"repository": "github:tzachshabtay/Krowser",
"scripts": {
"test": "echo \"todo\"",
"build:backend": "cd ./src/server && cargo build",
"build:frontend": "cd ./src/client && webpack",
"kafka-up": "cd ./test && docker-compose -f docker-compose-single-broker.yml up -d",
"kafka-down": "cd ./test && docker-compose -f docker-compose-single-broker.yml down",
"insert-events": "cd ./test && node ./publisher.js",
"start": "cd ./src/server && cargo run"
},
"author": "Tzach Shabtay",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.6",
"@types/history": "^4.7.8",
"@types/node": "^12.12.47",
"@types/qs": "^6.9.4",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
"@types/uuid": "^8.0.0",
"css-loader": "^5.2.0",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.1.0",
"typescript": "^3.9.5",
"webpack": "^5.94.0",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@mdi/js": "^5.9.55",
"@mdi/react": "^1.5.0",
"@ovotech/avro-kafkajs": "^0.6.3",
"@types/long": "^4.0.1",
"ag-grid-community": "^31.3.4",
"ag-grid-react": "^23.2.0",
"axios": "^0.28.0",
"ejs": "^3.1.7",
"express": "^4.21.1",
"kafka-avro": "^3.2.0",
"kafkajs": "^1.15.0",
"long": "^4.0.0",
"node-fetch": "^2.6.7",
"qs": "^6.10.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.1",
"react-router-dom": "^5.2.0",
"server-timing": "^3.3.1",
"uuid": "^8.1.0"
}
}