-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1.05 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
{
"private": true,
"scripts": {
"dev": "next dev",
"port": "next dev -p 3500",
"build": "next build",
"start": "next start",
"test": "npx kill-port 3500 && next dev -p 3500 & cypress open",
"forward": "kubectl port-forward --namespace kubecost deployment/kubecost-cost-analyzer 9090 & next dev -p 3500 & kubectl port-forward svc/prometheus-operated 9000:9090 & kubectl --namespace default port-forward svc/minikube-grafana 3300:80"
},
"dependencies": {
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"flowbite": "^1.6.3",
"formik": "^2.2.9",
"mongoose": "^6.8.4",
"next": "latest",
"next-auth": "^4.19.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^2.0.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/node": "18.11.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.12",
"cypress": "^12.5.1",
"postcss": "^8.4.18",
"tailwindcss": "^3.2.4",
"typescript": "4.9.4"
}
}