-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
76 lines (76 loc) · 2.13 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
{
"name": "@nestjs/azure-database",
"version": "4.0.0",
"description": "The Azure Table Storage module for Nest framework (node.js)",
"main": "dist/index.js",
"author": {
"name": "Wassim Chegham",
"email": "github@wassim.dev",
"url": "https://twitter.com/manekinekko"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nestjs/azure-database.git"
},
"scripts": {
"test": "jest --passWithNoTests",
"precommit": "lint-staged",
"prettier": "prettier src/**/*.ts --write && git status",
"build": "rimraf dist && npm run build:lib && npm test",
"format": "prettier --write \"{lib,test}/**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"build:lib": "tsc -p tsconfig.json",
"prepare": "npm run build",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0"
},
"dependencies": {
"@azure/cosmos": "^4.0.0",
"@azure/data-tables": "^13.2.2",
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-angular": "19.7.0",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.18.0",
"@nestjs/testing": "11.0.3",
"@types/jest": "29.5.14",
"@types/node": "22.10.7",
"dotenv": "16.4.7",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"globals": "15.14.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.4.1",
"prettier": "3.4.2",
"reflect-metadata": "0.1.14",
"rimraf": "6.0.1",
"rxjs": "7.8.1",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"typescript": "5.7.3",
"typescript-eslint": "8.21.0"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
}
}