-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.32 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.32 KB
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
{
"name": "system_adam_monitor",
"version": "1.0.0",
"private": true,
"description": "- Medir Temperatura - Medir Presión - Medir ON y OFF - Mostrar datos en tiempo real en una gráfica - Guardar historial en una base de datos Postgress",
"workspaces": [
"api",
"client"
],
"scripts": {
"dev": "npm run dev -w client",
"build": "tsc -b && npm run build -w client",
"lint": "npm run lint -w client",
"preview": "npm run preview -w client",
"server": "npm run server -w api",
"prisma:reset": "npm run prisma:reset -w api",
"prisma:generate": "npm run prisma:generate -w api",
"prisma:migrate": "npm run prisma:migrate -w api",
"prisma:studio": "npm run prisma:studio -w api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dann035/System_ADAM_Monitor.git"
},
"keywords": [],
"author": "Daniel Landa",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dann035/System_ADAM_Monitor/issues"
},
"homepage": "https://github.com/Dann035/System_ADAM_Monitor#readme",
"devDependencies": {
"@eslint/js": "9.36.0",
"eslint": "9.36.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.22"
},
"dependencies": {
"@prisma/adapter-pg": "6.19.0",
"@vercel/functions": "3.3.0",
"pg": "8.16.3"
}
}