-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 2.7 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
94
95
96
97
98
99
{
"name": "nestjs-iacry",
"version": "0.2.0",
"private": false,
"description": "NestJS - an identity and access control module inspired by AWS IAM (@iac, @iam)",
"keywords": [
"nest",
"iac",
"iam",
"identity",
"control",
"policy",
"firewall"
],
"homepage": "https://github.com/AlexanderC/nestjs-iacry#readme",
"bugs": {
"url": "https://github.com/AlexanderC/nestjs-iacry/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexanderC/nestjs-iacry.git"
},
"license": "MIT",
"author": "Alex Cucer<alexander.moldova@gmail.com>",
"contributors": [
"Alex Cucer <alexander.moldova@gmail.com>"
],
"scripts": {
"prebuild": "npx rimraf dist",
"build": "npx tsc -p tsconfig.json",
"deploy": "sh ./publish.sh",
"format": "npx prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"major": "npm run release -- --release-as major",
"minor": "npm run release -- --release-as minor",
"patch": "npm run release -- --release-as patch",
"release": "npx standard-version",
"test": "npx jest",
"test:watch": "npx jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"dependencies": {
"dot-prop": "^6.0.1",
"micromatch": "^4.0.5"
},
"optionalDependencies": {
"ioredis": "^5.3.2",
"sequelize": "6.32.1",
"sequelize-typescript": "2.1.5"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-angular": "^17.6.6",
"@golevelup/nestjs-testing": "^0.1.2",
"@nestjs/cli": "^10.1.7",
"@nestjs/common": "^10.0.5",
"@nestjs/core": "10.0.5",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.5",
"@types/ioredis": "^4.28.10",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.0",
"@types/sequelize": "^4.28.15",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"sequelize": "6.32.1",
"sequelize-typescript": "2.1.5",
"standard-version": "^9.5.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@nestjs/common": "^9.2.1",
"@nestjs/core": "9.2.1"
}
}