-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.8 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
{
"name": "my-project",
"version": "0.0.1",
"description": "Project created to serve as a boilerplate for basic projects.",
"license": "MIT",
"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:local": "docker build -t my-project-local:latest . -f Dockerfile.local"
},
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@jest/types": "^29.1.2",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.2",
"@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.1.2",
"jest-junit": "^14.0.1",
"moq.ts": "^9.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "4.8.4"
},
"dependencies": {
"@types/lodash": "^4.14.168",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13"
},
"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/"
]
}
}