feat(src): basic setup for module files
This commit is contained in:
parent
2a524e3473
commit
1de259f28f
10
package-lock.json
generated
10
package-lock.json
generated
|
|
@ -14,6 +14,7 @@
|
||||||
"@nestjs/platform-express": "^11.0.1",
|
"@nestjs/platform-express": "^11.0.1",
|
||||||
"@prisma/adapter-mariadb": "^7.3.0",
|
"@prisma/adapter-mariadb": "^7.3.0",
|
||||||
"@prisma/client": "^7.3.0",
|
"@prisma/client": "^7.3.0",
|
||||||
|
"@prisma/extension-read-replicas": "^0.5.0",
|
||||||
"reflect-metadata": "^0.2.2",
|
"reflect-metadata": "^0.2.2",
|
||||||
"rxjs": "^7.8.1"
|
"rxjs": "^7.8.1"
|
||||||
},
|
},
|
||||||
|
|
@ -2641,6 +2642,15 @@
|
||||||
"@prisma/debug": "7.3.0"
|
"@prisma/debug": "7.3.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@prisma/extension-read-replicas": {
|
||||||
|
"version": "0.5.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@prisma/extension-read-replicas/-/extension-read-replicas-0.5.0.tgz",
|
||||||
|
"integrity": "sha512-t0kLjqFMte4wwGrZFhya4iFoyoOY4kjlyyE60WXZL66PqP6PcBpW/35eKb/3UcxgjJxcDlaJKfmGokFLOyafiQ==",
|
||||||
|
"license": "Apache-2.0",
|
||||||
|
"peerDependencies": {
|
||||||
|
"@prisma/client": "^7.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@prisma/fetch-engine": {
|
"node_modules/@prisma/fetch-engine": {
|
||||||
"version": "7.3.0",
|
"version": "7.3.0",
|
||||||
"resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-7.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-7.3.0.tgz",
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"@nestjs/platform-express": "^11.0.1",
|
"@nestjs/platform-express": "^11.0.1",
|
||||||
"@prisma/adapter-mariadb": "^7.3.0",
|
"@prisma/adapter-mariadb": "^7.3.0",
|
||||||
"@prisma/client": "^7.3.0",
|
"@prisma/client": "^7.3.0",
|
||||||
|
"@prisma/extension-read-replicas": "^0.5.0",
|
||||||
"reflect-metadata": "^0.2.2",
|
"reflect-metadata": "^0.2.2",
|
||||||
"rxjs": "^7.8.1"
|
"rxjs": "^7.8.1"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
0
src/accounts/account.controller.ts
Normal file
0
src/accounts/account.controller.ts
Normal file
0
src/accounts/account.dto.ts
Normal file
0
src/accounts/account.dto.ts
Normal file
0
src/accounts/account.module.ts
Normal file
0
src/accounts/account.module.ts
Normal file
0
src/accounts/account.service.ts
Normal file
0
src/accounts/account.service.ts
Normal file
0
src/deliveries/delivery.controller.ts
Normal file
0
src/deliveries/delivery.controller.ts
Normal file
0
src/deliveries/delivery.dto.ts
Normal file
0
src/deliveries/delivery.dto.ts
Normal file
0
src/deliveries/delivery.module.ts
Normal file
0
src/deliveries/delivery.module.ts
Normal file
0
src/deliveries/delivery.service.ts
Normal file
0
src/deliveries/delivery.service.ts
Normal file
0
src/devices/device.controller.ts
Normal file
0
src/devices/device.controller.ts
Normal file
0
src/devices/device.dto.ts
Normal file
0
src/devices/device.dto.ts
Normal file
0
src/devices/device.module.ts
Normal file
0
src/devices/device.module.ts
Normal file
0
src/devices/device.service.ts
Normal file
0
src/devices/device.service.ts
Normal file
0
src/fibre/fibre.controller.ts
Normal file
0
src/fibre/fibre.controller.ts
Normal file
0
src/fibre/fibre.dto.ts
Normal file
0
src/fibre/fibre.dto.ts
Normal file
0
src/fibre/fibre.module.ts
Normal file
0
src/fibre/fibre.module.ts
Normal file
0
src/fibre/fibre.service.ts
Normal file
0
src/fibre/fibre.service.ts
Normal file
0
src/phones/phone.controller.ts
Normal file
0
src/phones/phone.controller.ts
Normal file
0
src/phones/phone.dto.ts
Normal file
0
src/phones/phone.dto.ts
Normal file
0
src/phones/phone.module.ts
Normal file
0
src/phones/phone.module.ts
Normal file
0
src/phones/phone.service.ts
Normal file
0
src/phones/phone.service.ts
Normal file
0
src/product/product.controller.ts
Normal file
0
src/product/product.controller.ts
Normal file
0
src/product/product.dto.ts
Normal file
0
src/product/product.dto.ts
Normal file
0
src/product/product.module.ts
Normal file
0
src/product/product.module.ts
Normal file
0
src/product/product.service.ts
Normal file
0
src/product/product.service.ts
Normal file
0
src/staff/staff.controller.ts
Normal file
0
src/staff/staff.controller.ts
Normal file
0
src/staff/staff.dto.ts
Normal file
0
src/staff/staff.dto.ts
Normal file
0
src/staff/staff.module.ts
Normal file
0
src/staff/staff.module.ts
Normal file
0
src/staff/staff.service.ts
Normal file
0
src/staff/staff.service.ts
Normal file
0
src/television/television.controller.ts
Normal file
0
src/television/television.controller.ts
Normal file
0
src/television/television.dto.ts
Normal file
0
src/television/television.dto.ts
Normal file
0
src/television/television.module.ts
Normal file
0
src/television/television.module.ts
Normal file
0
src/television/television.service.ts
Normal file
0
src/television/television.service.ts
Normal file
0
src/tickets/ticket.controller.ts
Normal file
0
src/tickets/ticket.controller.ts
Normal file
0
src/tickets/ticket.dto.ts
Normal file
0
src/tickets/ticket.dto.ts
Normal file
0
src/tickets/ticket.module.ts
Normal file
0
src/tickets/ticket.module.ts
Normal file
0
src/tickets/ticket.service.ts
Normal file
0
src/tickets/ticket.service.ts
Normal file
Loading…
Reference in New Issue
Block a user