-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 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
{
"private": true,
"name": "nestjs-modular-project",
"description": "A set of useful NestJS modules.",
"packageManager": "[email protected]",
"scripts": {
"postinstall": "preconstruct dev",
"prepare": "simple-git-hooks",
"build:watch": "preconstruct watch",
"build": "preconstruct build",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"test:dist": "jest -c jest.dist.js --no-cache --ci --runInBand",
"test:coverage": "jest --coverage --no-cache --ci --runInBand",
"changeset": "changeset",
"version-apply": "changeset version",
"release": "changeset publish"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint . --fix",
"git add"
]
},
"simple-git-hooks": {
"post-commit": "git update-index --again",
"pre-commit": "yarn lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Karibash/nestjs-modular.git"
},
"author": "Karibash",
"license": "MIT",
"bugs": {
"url": "https://github.com/Karibash/nestjs-modular/issues"
},
"homepage": "https://github.com/Karibash/nestjs-modular",
"workspaces": [
"examples/*",
"packages/*"
],
"preconstruct": {
"packages": [
"packages/*"
]
},
"dependencies": {
"@babel/core": "7.20.5",
"@babel/plugin-proposal-decorators": "7.20.5",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@changesets/changelog-github": "0.4.7",
"@changesets/cli": "2.25.2",
"@jest/globals": "29.3.1",
"@preconstruct/cli": "2.2.2",
"@swc/core": "1.3.22",
"@swc/jest": "0.2.24",
"@typescript-eslint/eslint-plugin": "5.46.0",
"@typescript-eslint/parser": "5.46.0",
"eslint": "8.29.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "2.26.0",
"jest": "29.3.1",
"jest-watch-typeahead": "2.2.1",
"lint-staged": "13.1.0",
"simple-git-hooks": "2.8.1"
}
}