-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "@euk-labs/nest-beltz",
"version": "0.3.0",
"keywords": [
"eureka",
"utils",
"formatters",
"beltz",
"shoulders"
],
"main": "./cjs/index.js",
"module": "./index.js",
"types": "./index.d.ts",
"sideEffects": false,
"scripts": {
"build": "node ./scripts/build.js && tsc --project ./tsconfig.json --emitDeclarationOnly",
"lint": "tsc --project ./tsconfig.json && eslint src -c .eslintrc.json --ext tsx,ts",
"prepublish": "npm run build"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"esbuild": "^0.14.18",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"tsc-alias": "^1.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@euk-labs/beltz": "^2.4.2",
"@nestjs/common": "^8.2.6",
"@nestjs/swagger": "^5.2.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"ramda": "^0.28.0",
"rxjs": "^7.5.4",
"swagger-ui-express": "^4.3.0"
}
}