2021-10-29 20:57:24 -04:00
|
|
|
{
|
2021-11-03 21:25:40 -04:00
|
|
|
"name": "nest-starter-app",
|
2021-10-29 20:57:24 -04:00
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "",
|
|
|
|
"author": "",
|
|
|
|
"private": true,
|
|
|
|
"license": "UNLICENSED",
|
|
|
|
"scripts": {
|
2021-12-03 20:48:52 -05:00
|
|
|
"pullstarterapp": "git pull upstream main",
|
2021-11-20 20:18:58 -05:00
|
|
|
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config server/database/cli_config.ts",
|
2021-11-16 21:14:46 -05:00
|
|
|
"db:start": "pg_ctl status || pg_ctl start",
|
|
|
|
"db:stop": "pg_ctl status && pg_ctl stop",
|
2021-11-23 16:04:12 -05:00
|
|
|
"db:migration:create": "cd server/database/migrations && typeorm migration:create -n ",
|
2021-11-16 21:14:46 -05:00
|
|
|
"db:migrate": "yarn db:start && yarn typeorm migration:run",
|
2021-12-04 22:54:26 -05:00
|
|
|
"db:migrate:prod": "yarn typeorm migration:run",
|
2021-11-16 21:14:46 -05:00
|
|
|
"db:migrate:undo": "yarn db:start && yarn typeorm migration:revert",
|
2022-01-12 22:28:50 -05:00
|
|
|
"db:seed": "yarn db:start && ts-node ./node_modules/typeorm-seeding/dist/cli.js seed -n cli_config.ts -r \"$(pwd)/server/database\"",
|
|
|
|
"db:seed:prod": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed -n cli_config.ts -r \"$(pwd)/server/database\"",
|
2021-12-03 20:31:24 -05:00
|
|
|
"db:reset": "yarn db:start && yarn typeorm schema:drop && yarn db:migrate && yarn db:seed",
|
|
|
|
"db:setup": "bash bin/create_db.sh && yarn db:migrate && yarn db:seed",
|
2021-10-29 20:57:24 -04:00
|
|
|
"prebuild": "rimraf dist",
|
2021-12-04 22:54:26 -05:00
|
|
|
"postbuild": "yarn db:migrate:prod && yarn db:seed:prod",
|
2021-12-04 22:49:30 -05:00
|
|
|
"postinstall": "cd client && NODE_ENV=development yarn",
|
2021-11-16 21:14:46 -05:00
|
|
|
"build": "nest build && yarn client:build",
|
|
|
|
"format": "prettier --write \"server/**/*.ts\" \"test/**/*.ts\"",
|
2021-11-22 16:21:53 -05:00
|
|
|
"console": "ts-node -r tsconfig-paths/register server/console.ts",
|
2021-10-29 20:57:24 -04:00
|
|
|
"start": "nest start",
|
2021-11-16 21:14:46 -05:00
|
|
|
"start:dev": "yarn db:start && nest start --watch",
|
|
|
|
"start:debug": "yarn db:start && nest start --debug --watch",
|
2021-10-29 20:57:24 -04:00
|
|
|
"start:prod": "node dist/main",
|
2021-11-16 21:14:46 -05:00
|
|
|
"lint": "eslint \"{server,apps,libs,test}/**/*.ts\" --fix",
|
2021-10-29 20:57:24 -04:00
|
|
|
"test": "jest",
|
|
|
|
"test:watch": "jest --watch",
|
|
|
|
"test:cov": "jest --coverage",
|
|
|
|
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
2021-11-16 21:14:46 -05:00
|
|
|
"test:e2e": "jest --config ./test/jest-e2e.json",
|
2021-11-23 16:04:12 -05:00
|
|
|
"client:build": "cd client && yarn build",
|
|
|
|
"client:watch": "cd client && yarn watch"
|
2021-10-29 20:57:24 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@nestjs/common": "^8.0.0",
|
|
|
|
"@nestjs/core": "^8.0.0",
|
|
|
|
"@nestjs/platform-express": "^8.0.0",
|
2022-03-01 12:36:44 -05:00
|
|
|
"@nestjs/platform-socket.io": "^8.4.0",
|
2021-11-16 21:14:46 -05:00
|
|
|
"@nestjs/serve-static": "^2.2.2",
|
2021-11-07 20:23:01 -05:00
|
|
|
"@nestjs/typeorm": "^8.0.2",
|
2022-03-01 12:36:44 -05:00
|
|
|
"@nestjs/websockets": "^8.4.0",
|
2021-12-01 22:18:26 -05:00
|
|
|
"@types/lodash": "^4.14.177",
|
2021-11-16 21:14:46 -05:00
|
|
|
"bcrypt": "^5.0.1",
|
|
|
|
"cookie-parser": "^1.4.6",
|
2021-10-29 21:06:19 -04:00
|
|
|
"dotenv": "^10.0.0",
|
2021-11-16 21:14:46 -05:00
|
|
|
"hbs": "^4.1.2",
|
|
|
|
"jsonwebtoken": "^8.5.1",
|
2021-12-01 22:18:26 -05:00
|
|
|
"lodash": "^4.17.21",
|
2021-11-30 17:40:07 -05:00
|
|
|
"morgan": "^1.10.0",
|
2021-11-07 20:23:01 -05:00
|
|
|
"pg": "^8.7.1",
|
2021-10-29 20:57:24 -04:00
|
|
|
"reflect-metadata": "^0.1.13",
|
|
|
|
"rimraf": "^3.0.2",
|
2021-11-07 20:23:01 -05:00
|
|
|
"rxjs": "^7.2.0",
|
2021-11-30 19:44:58 -05:00
|
|
|
"typeorm": "^0.2.38",
|
|
|
|
"typeorm-seeding": "^1.6.1"
|
2021-10-29 20:57:24 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@nestjs/cli": "^8.0.0",
|
|
|
|
"@nestjs/schematics": "^8.0.0",
|
|
|
|
"@nestjs/testing": "^8.0.0",
|
2021-11-16 21:14:46 -05:00
|
|
|
"@types/cookie-parser": "^1.4.2",
|
2021-10-29 20:57:24 -04:00
|
|
|
"@types/express": "^4.17.13",
|
|
|
|
"@types/jest": "^27.0.1",
|
|
|
|
"@types/node": "^16.0.0",
|
|
|
|
"@types/supertest": "^2.0.11",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.28.2",
|
|
|
|
"@typescript-eslint/parser": "^4.28.2",
|
2021-11-22 16:21:53 -05:00
|
|
|
"await-outside": "^3.0.0",
|
2021-10-29 20:57:24 -04:00
|
|
|
"eslint": "^7.30.0",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
|
|
"jest": "^27.0.6",
|
2021-11-16 21:14:46 -05:00
|
|
|
"prettier": "^2.4.1",
|
2021-11-22 16:21:53 -05:00
|
|
|
"purdy": "^3.5.1",
|
|
|
|
"repl": "^0.1.3",
|
2021-10-29 20:57:24 -04:00
|
|
|
"supertest": "^6.1.3",
|
|
|
|
"ts-jest": "^27.0.3",
|
|
|
|
"ts-node": "^10.0.0",
|
|
|
|
"tsconfig-paths": "^3.10.1",
|
|
|
|
"typescript": "^4.3.5"
|
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"json",
|
|
|
|
"ts"
|
|
|
|
],
|
2021-12-05 20:46:44 -05:00
|
|
|
"moduleNameMapper": {
|
|
|
|
"^server/(.*)$": "<rootDir>/$1"
|
|
|
|
},
|
2022-03-01 12:28:29 -05:00
|
|
|
"moduleDirectories": [
|
|
|
|
"node_modules"
|
|
|
|
],
|
2021-12-03 19:00:23 -05:00
|
|
|
"rootDir": "./server",
|
2021-10-29 20:57:24 -04:00
|
|
|
"testRegex": ".*\\.spec\\.ts$",
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
|
|
},
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"**/*.(t|j)s"
|
|
|
|
],
|
|
|
|
"coverageDirectory": "../coverage",
|
|
|
|
"testEnvironment": "node"
|
2021-12-04 22:27:04 -05:00
|
|
|
},
|
|
|
|
"engines": {
|
2022-03-01 12:28:29 -05:00
|
|
|
"node": "16.14"
|
2021-10-29 20:57:24 -04:00
|
|
|
}
|
|
|
|
}
|