34 lines
989 B
JSON
34 lines
989 B
JSON
{
|
|
"name": "backend",
|
|
"version": "1.0.0-ALPHA",
|
|
"description": "The LicenseAPI Backend",
|
|
"main": "server.ts",
|
|
"repository": "https://github.com/LicenseAPI/Backend.git",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "nodemon --watch \"src/**\" -r tsconfig-paths/register src/server.ts",
|
|
"ci:eslint": "eslint \"**/*.{ts,tsx}\" --max-warnings=0",
|
|
"ci:tsc": "tsc --noemit",
|
|
"ci:install": "yarn install --immutable --immutable-cache --check-cache",
|
|
"build": "tsc && tsc-alias"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"joi": "^17.7.0",
|
|
"mongoose": "^6.8.3",
|
|
"mongoose-encryption": "^2.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.15",
|
|
"@types/node": "^18.11.18",
|
|
"@typescript-eslint/eslint-plugin": "^5.48.1",
|
|
"@typescript-eslint/parser": "^5.48.1",
|
|
"eslint": "^8.31.0",
|
|
"nodemon": "^2.0.20",
|
|
"ts-node": "^10.9.1",
|
|
"tsc-alias": "^1.8.2",
|
|
"tsconfig-paths": "^4.1.2",
|
|
"typescript": "^4.9.4"
|
|
}
|
|
}
|