lecoffre-back/package.json
Arnaud D. Natali 3dc043e6c4
Feature/services test (#17)
controllers, repositories, services and associated tests for:

Deed types, Deed, Document types, Users and Customers

---------

Co-authored-by: Vincent Alamelle <vincent.alamelle@smart-chain.fr>
Co-authored-by: OxSaitama <arnaud.daubernatali@smart-chain.fr>
2023-04-06 18:43:13 +02:00

81 lines
2.5 KiB
JSON

{
"name": "lecoffre-back",
"version": "1.0.0",
"description": "lecoffre project",
"_moduleAliases": {
"@App": "./dist/app",
"@Api": "./dist/app/api",
"@Pages": "./dist/pages",
"@Common": "./dist/common",
"@Services": "./dist/services",
"@Repositories": "./dist/common/repositories",
"@Entries": "./dist/common/entries",
"@Config": "./dist/common/config",
"@Entities": "./dist/common/entities",
"@System": "./dist/common/system",
"@ControllerPattern": "./dist/common/system/controller-pattern",
"@Test": "./dist/test"
},
"scripts": {
"build": "tsc",
"api:start": "npm run migrate && node ./dist/entries/App.js",
"start": "tsc && npm run api:start",
"dev": "nodemon -V",
"api:dev": "nodemon -V --exec 'tsc && npm run api:start'",
"build:test": "tsc && mocha ./dist/entries/Test.js",
"format": "prettier --write src",
"migrate": "npx prisma migrate deploy",
"docker:up": "docker-compose up -d",
"docker:up:test": "docker-compose -f docker-compose-test.yml up -d",
"docker:down": "docker-compose -f docker-compose-test.yml down",
"test": "tsc && npm run docker:up:test && jest -i --verbose ./dist/test/* && npm run docker:down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-chain-fr/leCoffre-back.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/smart-chain-fr/leCoffre-back/issues"
},
"homepage": "https://github.com/smart-chain-fr/leCoffre-back#readme",
"dependencies": {
"@prisma/client": "^4.11.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"classnames": "^2.3.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"le-coffre-resources": "git@github.com:smart-chain-fr/leCoffre-resources.git#v2.19",
"module-alias": "^2.2.2",
"next": "^13.1.5",
"node-cache": "^5.1.2",
"node-schedule": "^2.1.1",
"prisma-query": "^2.0.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typedi": "^0.10.0",
"typescript": "^4.9.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.16",
"@types/jest": "^29.5.0",
"@types/node": "^18.11.18",
"@types/node-schedule": "^2.1.0",
"@types/uuid": "^9.0.0",
"jest": "^29.5.0",
"nodemon": "^2.0.20",
"prettier": "2.8.4",
"prisma": "^4.11.0",
"ts-jest": "^29.0.5"
},
"prisma": {
"schema": "src/common/databases/schema.prisma"
}
}