-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.72 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "hyperion",
"version": "0.1.0",
"description": "",
"main": "index.tsx",
"scripts": {
"start": "NODE_ENV=production node server/server.js",
"build": "webpack",
"dev": "NODE_ENV=development nodemon server/server.js & NODE_ENV=development webpack serve --open",
"test": "vitest --environment jsdom"
},
"author": "Team jakaL",
"license": "ISC",
"dependencies": {
"@babel/plugin-transform-typescript": "^7.18.12",
"@babel/preset-react": "^7.18.6",
"@emotion/styled": "^11.10.0",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.3",
"@mui/x-data-grid": "^5.15.3",
"axios": "^0.27.2",
"bootstrap": "^5.2.0",
"chart": "^0.1.2",
"chart.js": "^3.9.1",
"chartjs-adapter-luxon": "^1.2.0",
"chartjs-plugin-streaming": "^2.0.0",
"express": "^4.18.1",
"express-openid-connect": "^2.8.0",
"firebase": "^9.9.2",
"firebaseui": "^6.0.1",
"luxon": "^3.0.1",
"node-fetch": "^3.2.10",
"nodemon": "^2.0.19",
"passport": "^0.6.0",
"pg": "^8.7.3",
"postcss-loader": "^7.0.1",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-chartjs-2": "^4.3.1",
"react-dom": "^18.2.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"socket-io": "^1.0.0",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"@vitejs/plugin-react": "^2.0.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^6.7.1",
"eslint": "^8.22.0",
"eslint-plugin-react": "^7.30.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^20.0.0",
"puppeteer": "^16.1.1",
"react-test-renderer": "^18.2.0",
"react-testing-library": "^8.0.1",
"regenerator-runtime": "^0.13.9",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"vitest": "^0.22.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}