-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.71 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "nestjs-tile38",
"version": "10.0.0",
"description": "Nest - a tile38 module",
"repository": {
"type": "git",
"url": "https://github.com/hyperloris/nestjs-tile38"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"author": "Lorenzo Gigli <[email protected]>",
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{lib,apps,libs,test}/**/*.ts\" --fix",
"prepublish": "rimraf dist & tsc -p tsconfig.build.json",
"publish": "npm publish --access public",
"release": "release-it",
"test": "jest",
"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"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"jest": {
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@iwpnd/tile38-ts": "^2.1.4",
"@nestjs/common": "^10.3.7",
"@nestjs/core": "^10.3.7",
"@nestjs/testing": "^10.3.7",
"@release-it/conventional-changelog": "^5.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "28.1.8",
"@types/node": "^16.0.0",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"app-root-path": "^3.1.0",
"docker-compose": "^0.24.8",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.3.2",
"reflect-metadata": "^0.1.13",
"release-it": "^15.4.2",
"rimraf": "^3.0.2",
"rxjs": "^7.5.6",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "28.0.8",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.1.0",
"typescript": "~4.7.4"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^ 10.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 ^ 10.0.0",
"@iwpnd/tile38-ts": "^2.1.4",
"reflect-metadata": "^0.1.12",
"rxjs": "^7.0.0"
}
}