forked from samchouse/utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.74 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.74 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
{
"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": {
"prebuild": "rimraf ../../dist/api",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node ../../dist/api/main",
"start:dev:wp": "nest build --webpack --webpackPath webpack-hmr.config.js --watch",
"test": "jest --passWithNoTests",
"lint": "run-s lint:eslint lint:prettier",
"lint:report": "run-s \"lint:eslint --output-file ../../eslint-report.json --format json\" lint:prettier",
"lint:eslint": "eslint --ignore-path ../../.gitignore \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:prettier": "prettier --write --ignore-path ../../.gitignore .",
"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",
"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": {
"@nestjs/common": "^8.2.0",
"@nestjs/config": "^1.1.0",
"@nestjs/core": "^8.2.0",
"@nestjs/mapped-types": "*",
"@nestjs/platform-fastify": "^8.2.0",
"aws-sdk": "^2.1029.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"fastify": "^3.24.0",
"fastify-helmet": "^5.3.2",
"fastify-static": "^4.5.0",
"ioredis": "^4.28.0",
"lodash.escaperegexp": "^4.1.2",
"point-of-view": "^4.15.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.4.0"
},
"devDependencies": {
"@nestjs/cli": "^8.1.4",
"@nestjs/schematics": "^8.0.4",
"@nestjs/testing": "^8.2.0",
"@types/ioredis": "^4.28.1",
"@types/lodash.escaperegexp": "^4.1.6",
"@types/supertest": "^2.0.11",
"run-script-webpack-plugin": "^0.0.11",
"source-map-support": "^0.5.20",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"webpack": "^5.64.1",
"webpack-node-externals": "^3.0.0"
},
"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"
}
}