forked from ifaim/nestjs-express-cassandra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.71 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
{
"name": "@iaminfinity/express-cassandra",
"version": "6.0.7",
"description": "Nest - modern, fast, powerful node.js web framework (@express-cassandra)",
"author": {
"name": "Fahim Rahman",
"email": "[email protected]",
"url": "https://github.com/ifaim"
},
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"precommit": "lint-staged",
"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": "[email protected]:ifaim/nestjs-express-cassandra.git"
},
"homepage": "https://github.com/ifaim/nestjs-express-cassandra",
"peerDependencies": {
"@nestjs/common": "^10.1.3",
"@nestjs/core": "^10.1.3",
"cassandra-driver": "^4.6.2",
"reflect-metadata": "^0.1.12",
"rxjs": "^7.1.0"
},
"devDependencies": {
"@nestjs/common": "^10.1.3",
"@nestjs/core": "^10.1.3",
"@types/node": "10.12.18",
"husky": "3.0.9",
"lint-staged": "9.4.2",
"prettier": "1.18.2",
"reflect-metadata": "0.1.13",
"rxjs": "^7.1.0",
"tslint": "5.20.0",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"dependencies": {
"express-cassandra": "https://github.com/trufflehq/express-cassandra/releases/download/v2.8.1/express-cassandra-2.8.1.tar.gz",
"merge-deep": "3.0.2"
},
"keywords": [
"nestjs",
"cassandra",
"apache-cassandra",
"datastax",
"orm",
"express-cassandra",
"node",
"nodejs",
"javascript"
]
}