-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.32 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
{
"name": "patronas-hackathon-2021-api",
"version": "1.0.0",
"main": "index.js",
"author": "Julien Thoma <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint . --fix --max-warnings=0",
"start": "ts-node server/server.ts",
"dev": "webpack serve --progress --open --mode=development",
"build": "webpack --mode=production --progress"
},
"dependencies": {
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/types": "7.15.4",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.8",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"@types/react-router-dom": "^5.1.8",
"@types/shortid": "^0.0.29",
"babel-loader": "^8.2.2",
"babel-plugin-react-require": "^3.1.3",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"dayjs": "^1.10.6",
"easy-peasy": "^5.0.3",
"express": "^4.17.1",
"faker": "^5.5.3",
"html-webpack-plugin": "^5.3.2",
"kafkajs": "^1.15.0",
"mini-css-extract-plugin": "^2.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.1.2",
"react-json-view": "^1.21.3",
"react-router-dom": "^5.3.0",
"sass-loader": "^12.1.0",
"serve": "^12.0.1",
"shortid": "^2.2.16",
"socket.io": "^4.2.0",
"socket.io-client": "^4.2.0",
"style-loader": "^3.2.1",
"swc-loader": "^0.1.14",
"terser-webpack-plugin": "^5.2.3",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2",
"url-loader": "^4.1.1",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"jest": "^27.1.1",
"prettier": "^2.4.0"
}
}