-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.59 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "skyscraper",
"version": "1.0.0",
"description": "Visualizer Dashboard for AWS EC2 Instances",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "rm -rf ./client/dist/* && rm -rf ./server/dist/*",
"dev": "webpack serve --config ./client/webpack.config.js --mode=development",
"build:prd": "webpack --config ./client/webpack.config.js --mode=production",
"build:server": "tsc --project ./server/tsconfig.json",
"build": "npm run build:server && npm run build:prd",
"start": "nodemon ./server/dist/server.js",
"go": "npm run clean && npm run build && npm run start",
"test": "jest",
"lint": "eslint .",
"_Comment1": "delete axios, cors, babel, eslint, @types react testing libary 10.2 and any other unused dependencies"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/SkyScraper.git"
},
"author": "Tripp Murphy, Christie Laferriere, Bin He, Abel Ratanaphan, Nikola Andelkovic",
"license": "MIT",
"bugs": {
"url": "https://github.com/oslabs-beta/SkyScraper/issues"
},
"homepage": "https://github.com/oslabs-beta/SkyScraper#readme",
"dependencies": {
"@auth0/auth0-react": "^2.2.4",
"@aws-sdk/client-cloudwatch": "^3.576.0",
"@aws-sdk/client-cognito-identity": "^3.588.0",
"@aws-sdk/client-ec2": "^3.576.0",
"@aws-sdk/client-sts": "^3.590.0",
"@aws-sdk/credential-provider-web-identity": "^3.587.0",
"@reduxjs/toolkit": "^2.2.4",
"@types/chart.js": "^2.9.41",
"@types/express": "^4.17.21",
"@types/react-redux": "^7.1.33",
"aws-jwt-verify": "^4.0.1",
"chart.js": "^4.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-openid-connect": "^2.17.1",
"ionicons": "^7.4.0",
"jest-fetch-mock": "^3.0.3",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.23.1",
"recharts": "^2.12.7",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@eslint/js": "^9.2.0",
"@reduxjs/toolkit": "^2.2.5",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.11",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/redux-mock-store": "^1.0.6",
"@types/serve-favicon": "^2.5.7",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.2.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mini-css-extract-plugin": "^2.9.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"redux-mock-store": "^1.5.4",
"sass": "^1.77.2",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.1.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}