-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 1.93 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
{
"name": "kafkaESK",
"version": "1.0.0",
"description": "",
"main": ".index.js",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"scripts": {
"test": "jest --verbose",
"start": "nodemon ./server/server.js & webpack-dev-server --open --hot --host 0.0.0.0",
"create": "webpack --config ./webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chelseaharris137/kafkaESK.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chelseaharris137/kafkaESK/issues"
},
"homepage": "https://github.com/chelseaharris137/kafkaESK#readme",
"jest": {
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "babel-jest"
}
},
"dependencies": {
"airtable": "^0.10.1",
"chart.js": "^2.9.4",
"cors": "^2.8.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"express": "^4.17.1",
"jest": "^26.6.3",
"kafkajs": "^1.15.0",
"kafkajs-snappy": "^1.1.0",
"morgan": "^1.10.0",
"node-sass": "^5.0.0",
"react": "^16.14.0",
"react-chartjs-2": "^2.11.1",
"react-dom": "^16.14.0",
"socket.io": "^3.0.4"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^4.5.0",
"nodemon": "^2.0.6",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}