-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.18 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "uowac",
"version": "0.0.1",
"description": "",
"author": "",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"start": "npm run start:prod",
"start:dev": "concurrently --handle-input \"wait-on dist/main.js && nodemon\" \"tsc -w -p tsconfig.build.json\" ",
"start:debug": "nodemon --config nodemon-debug.json",
"prestart:prod": "rimraf dist && npm run build",
"start:prod": "node dist/main.js",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest --verbose",
"test:watch": "jest --watch --verbose",
"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 --runInBand --config ./test/jest-e2e.json",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/ormconfig.ts",
"typeorm:migrate": "npm run typeorm migration:generate -n",
"typeorm:run": "npm run typeorm migration:run",
"migrate:dev": "npm run typeorm migration:generate -- -c development -n",
"runmigrate:dev": "npm run typeorm migration:run -- -c development",
"revertmigrate:dev": "npm run typeorm migration:revert -- -c development",
"auth0:deploy": "ts-node auth0/deploy.ts",
"auth0:export": "ts-node auth0/export.ts",
"heroku-postbuild": "echo \"Auto auth0 deploy disabled\""
},
"dependencies": {
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"@nestjs/passport": "^6.1.0",
"@nestjs/platform-express": "^6.0.0",
"@nestjs/typeorm": "^6.1.2",
"auth0": "^2.20.0",
"auth0-deploy-cli": "^3.6.0",
"aws-sdk": "^2.524.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.10.1",
"dotenv": "^8.0.0",
"js-yaml": "^3.13.1",
"jwks-rsa": "^1.6.0",
"moment": "^2.24.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pg": "^7.11.0",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"rxjs": "^6.3.3",
"typeorm": "^0.2.19"
},
"devDependencies": {
"@nestjs/testing": "^6.0.0",
"@types/auth0": "^2.9.21",
"@types/express": "^4.16.0",
"@types/faker": "^4.1.6",
"@types/jest": "^23.3.13",
"@types/js-yaml": "^3.12.1",
"@types/node": "^10.14.8",
"@types/passport-jwt": "^3.0.2",
"@types/supertest": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"concurrently": "^4.1.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.19.0",
"faker": "^4.1.0",
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"prettier": "^1.17.1",
"supertest": "^3.4.1",
"ts-jest": "24.0.2",
"ts-node": "8.1.0",
"tsconfig-paths": "3.8.0",
"tslint": "5.16.0",
"typescript": "3.4.3",
"wait-on": "^3.2.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}