mirror of
https://github.com/diangogav/EDOpro-server-ts
synced 2026-08-24 00:23:05 -04:00
80 lines
2.9 KiB
JSON
80 lines
2.9 KiB
JSON
{
|
|
"engines": {
|
|
"node": ">=22.11.0"
|
|
},
|
|
"name": "edopro",
|
|
"version": "2.6.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"dev": "ts-node-dev --inspect=0.0.0.0:9229 -r tsconfig-paths/register --respawn --poll src/index.ts ",
|
|
"build": "tsc && tsc-alias -p tsconfig.json",
|
|
"start": "npm run build && node ./dist/src/index.js",
|
|
"lint": "eslint --ignore-path .gitignore . --ext .ts",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"prepare": "husky",
|
|
"create-user": "ts-node-dev -r tsconfig-paths/register --respawn --poll src/utils/create-user.ts",
|
|
"generate-mercury-pre-releases-cdb": "ts-node -r tsconfig-paths/register src/utils/generate-mercury-pre-releases-cdb.ts",
|
|
"migrate-users": "ts-node-dev -r tsconfig-paths/register --respawn --poll src/utils/migrate-user-from-redis-to-postgres.ts",
|
|
"migration:generate": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js migration:generate -d ./src/evolution-types/src/data-source.ts ./src/evolution-types/src/migrations/$npm_config_name",
|
|
"migration:run": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js migration:run -d ./src/evolution-types/src/data-source.ts",
|
|
"migration:revert": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js migration:revert -d ./src/evolution-types/src/data-source.ts"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^19.3.0",
|
|
"@commitlint/config-conventional": "^19.2.2",
|
|
"@types/bcrypt": "^5.0.2",
|
|
"@types/express": "^4.17.17",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^22.15.19",
|
|
"@types/ws": "^8.5.8",
|
|
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
|
"@typescript-eslint/parser": "^5.21.0",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-codely": "^2.1.3",
|
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jest": "^26.1.5",
|
|
"husky": "^9.0.11",
|
|
"jest": "^29.7.0",
|
|
"jest-mock-extended": "^4.0.0-beta1",
|
|
"lint-staged": "^15.2.7",
|
|
"prettier": "^2.6.2",
|
|
"swc-loader": "^0.2.6",
|
|
"ts-jest": "^29.1.4",
|
|
"ts-node-dev": "^2.0.0",
|
|
"tsc-alias": "^1.8.10",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"dependencies": {
|
|
"@faker-js/faker": "^8.4.1",
|
|
"@types/shuffle-array": "^1.0.2",
|
|
"array-shuffle": "^3.0.0",
|
|
"bcrypt": "^5.1.1",
|
|
"diod": "^2.0.0",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"ioredis": "^5.4.1",
|
|
"load-json-file": "^7.0.1",
|
|
"lzma-native": "^8.0.6",
|
|
"pg": "^8.12.0",
|
|
"pino": "^8.14.1",
|
|
"pino-pretty": "^10.0.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"shuffle-array": "^1.0.1",
|
|
"simple-git": "^3.22.0",
|
|
"sqlite3": "^5.1.6",
|
|
"typeorm": "^0.3.20",
|
|
"winston": "^3.8.2",
|
|
"ws": "^8.14.2"
|
|
},
|
|
"lint-staged": {
|
|
"*.(js|ts)": "npm run lint:fix"
|
|
}
|
|
}
|