-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@pw-tech/platform-hyper-express",
"version": "0.4.0",
"tag": "latest",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc -b .",
"compile": "tsc --build ./tsconfig.build.json",
"start:local": "node --watch-path=./src dist/test.js & tsc -w",
"start:dev": "npm run build && node dist/index.js",
"distribute": "npm run build",
"test": "jest -t=hello-world",
"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:integrations": "jest --config ./tests/jest-config.json",
"test:integrations:watch": "jest --config ./tests/jest-config.json --watchAll"
},
"dependencies": {
"body-parser": "1.20.2",
"content-type": "1.0.5",
"cors": "2.8.5",
"hyper-express": "^6.17.3",
"live-directory": "3.0.3"
},
"devDependencies": {
"@nestjs/common": "10.3.1",
"@nestjs/core": "10.3.1",
"@nestjs/testing": "^10.3.8",
"@types/content-type": "~1.1.8",
"@types/cors": "~2.8.17",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"class-validator": "^0.14.1",
"eslint": "^8.38.0",
"eventsource": "^2.0.2",
"jest": "^29.7.0",
"pactum": "^3.7.0",
"prettier": "^2.8.7",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0"
},
"directories": {
"test": "tests"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "tests",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC"
}