forked from ifaim/nestjs-express-cassandra
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.96 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.96 KB
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
{
"name": "@ouato/nestjs-express-cassandra",
"version": "6.2.3",
"description": "Nest - modern, fast, powerful node.js web framework (@express-cassandra)",
"authors": [
{
"name": "Ouato",
"email": "ouato@hotmail.com"
},
{
"name": "Ertayle",
"email": "ertayle_@hotmail.com"
}
],
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"dist": "tsc -p tsconfig.json",
"prepack": "node -e \"require('fs').mkdirSync('./release', { recursive: true })\"",
"pack": "npm pack --pack-destination ./release",
"build": "npm run clean && npm run dist && npm run prepack && npm run pack",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"repository": {
"type": "git",
"url": "git@github.com:ouato/nestjs-express-cassandra.git"
},
"homepage": "https://github.com/ouato/nestjs-express-cassandra",
"peerDependencies": {
"@nestjs/common": "^10.4.20",
"@nestjs/core": "^10.4.20",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@nestjs/common": "^10.4.20",
"@nestjs/core": "^10.4.20",
"@types/node": "10.12.18",
"@types/uuid": "^10.0.0",
"mkdirp": "^3.0.1",
"prettier": "^3.6.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.10",
"rxjs": "^7.8.2",
"tslint": "5.20.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"dependencies": {
"cassandra-driver": "^4.8.0",
"express-cassandra": "^2.9.1",
"merge-deep": "^3.0.3"
},
"keywords": [
"nestjs",
"cassandra",
"apache-cassandra",
"datastax",
"orm",
"express-cassandra",
"node",
"nodejs",
"javascript"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}