summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json35
1 files changed, 24 insertions, 11 deletions
diff --git a/package.json b/package.json
index ecb56f5..a9a2d6d 100644
--- a/package.json
+++ b/package.json
@@ -6,28 +6,40 @@
"private": true,
"license": "UNLICENSED",
"scripts": {
- "start:db": "pg_ctl status || pg_ctl start",
- "stop:db": "pg_ctl status && pg_ctl stop",
+ "typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/database/cli_config.ts",
+ "db:start": "pg_ctl status || pg_ctl start",
+ "db:stop": "pg_ctl status && pg_ctl stop",
+ "db:migration:create": "cd server/migrations && typeorm migration:create -n ",
+ "db:migrate": "yarn db:start && yarn typeorm migration:run",
+ "db:migrate:undo": "yarn db:start && yarn typeorm migration:revert",
"prebuild": "rimraf dist",
- "build": "nest build",
- "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
+ "build": "nest build && yarn client:build",
+ "format": "prettier --write \"server/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
- "start:dev": "yarn start:db && nest start --watch",
- "start:debug": "yarn start:db && nest start --debug --watch",
+ "start:dev": "yarn db:start && nest start --watch",
+ "start:debug": "yarn db:start && nest start --debug --watch",
"start:prod": "node dist/main",
- "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
+ "lint": "eslint \"{server,apps,libs,test}/**/*.ts\" --fix",
"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",
- "test:e2e": "jest --config ./test/jest-e2e.json"
+ "test:e2e": "jest --config ./test/jest-e2e.json",
+ "client:build": "parcel build ./client/index.js --dist-dir static",
+ "client:watch": "parcel watch ./client/index.js --dist-dir static"
},
"dependencies": {
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/platform-express": "^8.0.0",
+ "@nestjs/serve-static": "^2.2.2",
"@nestjs/typeorm": "^8.0.2",
+ "bcrypt": "^5.0.1",
+ "cookie-parser": "^1.4.6",
"dotenv": "^10.0.0",
+ "hbs": "^4.1.2",
+ "jsonwebtoken": "^8.5.1",
+ "morgan": "^1.10.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
@@ -38,6 +50,7 @@
"@nestjs/cli": "^8.0.0",
"@nestjs/schematics": "^8.0.0",
"@nestjs/testing": "^8.0.0",
+ "@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/node": "^16.0.0",
@@ -48,10 +61,10 @@
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
- "prettier": "^2.3.2",
+ "parcel": "^2.0.1",
+ "prettier": "^2.4.1",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
- "ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
@@ -62,7 +75,7 @@
"json",
"ts"
],
- "rootDir": "src",
+ "rootDir": "server",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"