-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.65 KB
/
package.json
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
{
"name": "lzv-match-maker",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"clean": "rimraf lib",
"lint": "eslint 'src/**/*.ts'",
"prebuild": "npm run lint && npm run clean",
"build": "tsc",
"prestart": "npm run build",
"start": "node -r dotenv/config lib/main",
"populate-reference-collections": "ts-node -r dotenv/config scripts/populate-region-reference-collections.ts",
"watch": "tsc -w",
"nodemon": "nodemon --inspect -r dotenv/config lib/main",
"debug": "run-p watch nodemon",
"pretest": "eslint 'test/**/*.ts'",
"test": "jest --silent"
},
"private": true,
"dependencies": {
"@nestjs/axios": "^0.0.5",
"@nestjs/common": "^8.2.6",
"@nestjs/core": "^8.2.6",
"@nestjs/mongoose": "^9.0.2",
"@nestjs/passport": "^8.0.1",
"@nestjs/platform-express": "^8.2.6",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dotenv": "^10.0.0",
"jwks-rsa": "^2.0.5",
"mongoose": "^6.1.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.1.0"
},
"devDependencies": {
"@nestjs/testing": "^8.2.6",
"@types/faker": "^4.1.12",
"@types/jest": "^27.0.3",
"@types/node": "^11.15.25",
"@types/passport": "^1.0.4",
"@types/passport-jwt": "^3.0.6",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"faker": "^4.1.0",
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}