-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
{
"name": "lambdawg",
"private": true,
"version": "0.0.0",
"description": "Lambdawg is a visualization UI for your AWS Lambda Functions",
"main": "./client/index.js",
"scripts": {
"dev": "vite; export NODE_ENV=development",
"build": "vite build",
"preview": "vite preview",
"fulldev": "concurrently \"nodemon server/server.js\" \"vite\"",
"test": "jest",
"testopen": "jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "https://github.com/oslabs-beta/Lambdawg"
},
"keywords": [],
"author": "Vincent Jacquemin, Chanda Gonet, Ted Gusek, Erica Park",
"license": "ISC",
"bugs": {
"url": "https://github.com/oslabs-beta/Lambdawg/blob/main/Contributions.md"
},
"homepage": "https://github.com/oslabs-beta/Lambdawg/blob/main/README.md",
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.272.0",
"@aws-sdk/client-cloudwatch": "^3.272.0",
"@aws-sdk/client-cloudwatch-logs": "^3.272.0",
"@aws-sdk/client-lambda": "^3.272.0",
"@aws-sdk/client-sts": "^3.272.0",
"@aws-sdk/client-xray": "^3.279.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/material": "^5.11.12",
"axios": "^1.3.3",
"bcrypt": "^5.1.0",
"chart.js": "^4.2.1",
"concurrently": "^7.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"d3": "^7.8.2",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.4.3",
"jsonwebtoken": "^9.0.0",
"node": "^19.6.0",
"nodemon": "^2.0.20",
"path": "^0.12.7",
"pg": "^8.9.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-router-dom": "^6.8.1",
"react-scrollbars-custom": "^4.1.1",
"react-switch": "^7.0.0",
"redis": "^4.6.5",
"redis-server": "^1.2.2",
"sass": "^1.58.3",
"validator": "^13.9.0"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"supertest": "^6.3.3",
"vite": "^4.1.0"
}
}