-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.43 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.43 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
{
"name": "@utils/api",
"version": "1.0.1",
"description": "Utilities for doing various annoying tasks",
"repository": "https://github.com/Xenfo/utils.git",
"author": "Samuel Corsi-House <chouse.samuel@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"build": "rimraf ../../dist/api && nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node ../../dist/api/main",
"test": "run r:jest --passWithNoTests",
"lint": "run r:eslint --ignore-path ../../.gitignore \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:report": "run lint --output-file ../../eslint-report.json --format json",
"test:watch": "run r:jest --watch",
"test:cov": "run r:jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "run r:jest --config ./test/jest-e2e.json",
"services:up": "docker-compose -f docker/docker-compose.yml --env .env up -d",
"services:down": "docker-compose -f docker/docker-compose.yml --env .env down"
},
"dependencies": {
"@fastify/helmet": "^8.0.1",
"@fastify/static": "^5.0.2",
"@nestjs/common": "^8.4.5",
"@nestjs/config": "^2.0.0",
"@nestjs/core": "^8.4.5",
"@nestjs/mapped-types": "*",
"@nestjs/platform-fastify": "^8.4.5",
"aws-sdk": "^2.1135.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"fastify": "^3.29.0",
"ioredis": "^5.0.4",
"lodash.escaperegexp": "^4.1.2",
"point-of-view": "^6.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@nestjs/cli": "^8.2.5",
"@nestjs/schematics": "^8.0.11",
"@nestjs/testing": "^8.4.5",
"@types/ioredis": "^4.28.10",
"@types/lodash.escaperegexp": "^4.1.7",
"@types/supertest": "^2.0.12",
"source-map-support": "^0.5.21",
"supertest": "^6.2.3",
"ts-jest": "^28.0.2",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"webpack": "^5.72.1"
},
"jest": {
"displayName": "api",
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverage": true,
"coverageDirectory": "../../../coverage/api",
"testEnvironment": "node"
}
}