-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 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
44
45
46
47
48
49
50
{
"name": "pc2",
"version": "0.0.4",
"description": "Plastic Compute cloud: for manage VMs on any hypervisor(proxmox for now)",
"main": "server.js",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"start:dev": "tsc && npx nodemon dist/server",
"build": "npm i && npx typesync && npm i && tsc",
"prisma:migrate": "prisma migrate dev",
"prisma:generate": "prisma generate"
},
"keywords": [
"compute",
"vm",
"proxmox",
"pulumi"
],
"author": "shivamdurgude",
"license": "ISC",
"type": "module",
"dependencies": {
"@muhlba91/pulumi-proxmoxve": "^7.7.0",
"@prisma/adapter-pg": "^7.0.0",
"@prisma/client": "^7.0.0",
"@pulumi/pulumi": "^3.207.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"glob": "^12.0.0",
"node-gyp": "^12.1.0",
"nodemon": "^3.1.11",
"pg": "^8.16.3",
"prisma": "^7.0.0",
"typescript": "^5.9.3",
"undici": "^7.16.0",
"winston": "^3.18.3"
},
"devDependencies": {
"@types/cors": "~2.8.19",
"@types/express": "~5.0.5",
"@types/jest": "^30.0.0",
"@types/pg": "~8.15.6",
"@types/supertest": "~6.0.3",
"jest": "^30.2.0",
"supertest": "^7.1.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2"
}
}