-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
97 lines (97 loc) · 2.75 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
{
"name": "ghost",
"version": "1.0.0",
"description": "An open-source AWS Lambda metrics visualizer.",
"contributors": [
{
"name": "Krisette Odegard"
},
{
"name": "Akash Patel"
},
{
"name": "Tim Kang"
},
{
"name": "Tracy Chang"
},
{
"name": "Lisa Tian"
}
],
"main": "index.js",
"scripts": {
"build": "webpack --config ./webpack.config.js",
"electron": "electron ./dist/electron.js",
"start": "npm run build && electron ./dist/electron.js",
"startMon": "npm run build && electronmon ./dist/electron.js",
"server": "nodemon server/server.js",
"lint": "prettier --write . && eslint --ext .js,.jsx,.ts,.tsx --fix ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/ghost.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/oslabs-beta/ghost/issues"
},
"homepage": "https://github.com/oslabs-beta/ghost#readme",
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@wdio/cli": "^7.25.4",
"autoprefixer": "^10.4.12",
"css-loader": "^6.7.1",
"electron": "^27.0.2",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.0",
"ts-loader": "^9.4.1",
"typescript": "^4.9.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@aws-sdk/client-cloudwatch": "^3.192.0",
"@aws-sdk/client-cloudwatch-logs": "^3.192.0",
"@aws-sdk/client-lambda": "^3.192.0",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.10",
"@mui/x-date-pickers": "^5.0.7",
"@types/express": "^4.17.14",
"aws-sdk": "^2.1236.0",
"chart.js": "^3.9.1",
"dayjs": "^1.11.6",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"material-ui-popup-state": "^4.1.0",
"nodemon": "^3.0.1",
"react-chartjs-2": "^4.3.1",
"react-spinners": "^0.13.6",
"react-toggle-dark-mode": "^1.1.0"
}
}