-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.48 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
{
"name": "@heronlabs/vai-ts",
"version": "14.1.0",
"description": "Project created to initialize projects with Typescript",
"repository": "git@github.com:heronlabs/vai-ts.git",
"author": "Lucas Lacerda",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "bin/entry-point.js",
"files": [
"/bin"
],
"bin": {
"vai-ts": "bin/entry-point.js"
},
"engines": {
"node": ">=14.17.6"
},
"scripts": {
"compile": "rm -rf ./bin && tsc --project tsconfig.bin.json",
"lint:check": "gts lint",
"lint:fix": "gts fix",
"test": "jest --runInBand --colors",
"test:unit": "yarn test --config=tests/unit/jest.config.ts",
"test:integration": "yarn test --config=tests/integration/jest.config.ts",
"docker:build": "docker build -t vai-ts . -f Dockerfile.local",
"docker:run": "docker run --rm -it vai-ts /bin/sh",
"cli:run": "node bin/entry-point.js"
},
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@jest/types": "^29.0.3",
"@nestjs/testing": "^9.1.2",
"@types/inquirer": "^8.1.3",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.21",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"eslint": "^8.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"gts": "^4.0.0",
"jest": "^29.0.3",
"jest-junit": "^14.0.1",
"moq.ts": "^9.0.2",
"rxjs": "7.5.6",
"prettier": "^2.0.0",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"typescript": "4.8.4"
},
"dependencies": {
"@nestjs/common": "^9.1.4",
"@nestjs/core": "^9.4.0",
"@types/lodash": "^4.14.168",
"@types/unzipper": "0.10.5",
"@typescript-eslint/parser": "^5.0.0",
"axios": "1.6.0",
"lodash": "^4.17.21",
"nest-commander": "3.1.0",
"reflect-metadata": "^0.1.13",
"unzipper": "0.10.11"
},
"prettier": "gts/.prettierrc.json",
"eslintConfig": {
"extends": "./node_modules/gts/",
"plugins": [
"simple-import-sort"
],
"rules": {
"node/no-unpublished-import": 0,
"simple-import-sort/exports": "error",
"simple-import-sort/imports": "error",
"@typescript-eslint/no-duplicate-imports": "error",
"@typescript-eslint/no-unused-vars": [
"error"
],
"max-classes-per-file": [
"error",
1
]
},
"ignorePatterns": [
"node_modules/",
"coverage*/",
"bin/",
"__output__/"
]
}
}