-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.18 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
{
"name": "nestjs-modular-project",
"description": "A set of useful NestJS modules.",
"private": true,
"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": "yarn build && jest -c jest.dist.js --no-cache --ci --runInBand",
"test:coverage": "jest --coverage --no-cache --ci --runInBand",
"changeset": "changeset",
"version-apply": "changeset version",
"release": "yarn build && 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.18.2",
"@babel/plugin-proposal-decorators": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@jest/globals": "^28.1.0",
"@preconstruct/cli": "^2.1.5",
"@swc/core": "^1.2.194",
"@swc/jest": "^0.2.21",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.0",
"jest-styled-components": "^7.0.8",
"jest-watch-typeahead": "^1.1.0",
"lint-staged": "^12.4.2",
"simple-git-hooks": "^2.7.0"
}
}