84 lines
2.5 KiB
JSON
84 lines
2.5 KiB
JSON
{
|
|
"name": "system-api",
|
|
"version": "0.8.0",
|
|
"description": "",
|
|
"exports": "./dist/server.bundle.js",
|
|
"engines": {
|
|
"node": ">=14.16"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"test": "jest --colors",
|
|
"test:watch": "jest --watch",
|
|
"build": "rm -rf dist && node esbuild.js",
|
|
"build:watch": "node esbuild.js --sourcemap --watch",
|
|
"start:dev": "NODE_ENV=development && nodemon --watch dist dist/server.bundle.js",
|
|
"dev": "concurrently \"npm run build:watch\" \"npm run start:dev\"",
|
|
"start": "NODE_ENV=production && node dist/server.bundle.js",
|
|
"start:test": "NODE_ENV=test && node dist/server.bundle.js",
|
|
"typeorm": "typeorm-ts-node-commonjs -d ./ormconfig.ts",
|
|
"migration:generate": "npm run typeorm migration:generate"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"apollo-server-core": "^3.10.0",
|
|
"apollo-server-express": "^3.9.0",
|
|
"argon2": "^0.29.1",
|
|
"axios": "^0.26.1",
|
|
"class-validator": "^0.13.2",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.0.0",
|
|
"express": "^4.17.3",
|
|
"fs-extra": "^10.1.0",
|
|
"graphql": "^15.3.0",
|
|
"graphql-type-json": "^0.3.2",
|
|
"http": "0.0.1-security",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"node-cron": "^3.0.1",
|
|
"pg": "^8.7.3",
|
|
"redis": "^4.3.1",
|
|
"reflect-metadata": "^0.1.13",
|
|
"semver": "^7.3.7",
|
|
"type-graphql": "^1.1.1",
|
|
"typeorm": "^0.3.11",
|
|
"uuid": "^9.0.0",
|
|
"validator": "^13.7.0",
|
|
"winston": "^3.7.2",
|
|
"zod": "^3.19.1"
|
|
},
|
|
"devDependencies": {
|
|
"@faker-js/faker": "^7.3.0",
|
|
"@types/cors": "^2.8.12",
|
|
"@types/express": "^4.17.13",
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/jest": "^27.5.0",
|
|
"@types/jsonwebtoken": "^8.5.9",
|
|
"@types/node": "17.0.31",
|
|
"@types/node-cron": "^3.0.2",
|
|
"@types/pg": "^8.6.5",
|
|
"@types/semver": "^7.3.12",
|
|
"@types/uuid": "^8.3.4",
|
|
"@types/validator": "^13.7.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.18.0",
|
|
"@typescript-eslint/parser": "^5.22.0",
|
|
"concurrently": "^7.1.0",
|
|
"esbuild": "^0.16.6",
|
|
"eslint": "^8.13.0",
|
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"glob": "^8.0.3",
|
|
"graphql-import-node": "^0.0.5",
|
|
"jest": "^28.1.0",
|
|
"nodemon": "^2.0.15",
|
|
"prettier": "2.6.2",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^28.0.2",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "4.6.4"
|
|
}
|
|
}
|