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
68 lines (68 loc) · 1.67 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.67 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
{
"name": "@iaminfinity/express-cassandra",
"version": "5.0.1",
"description": "Nest - modern, fast, powerful node.js web framework (@express-cassandra)",
"author": {
"name": "Fahim Rahman",
"email": "faim.sust@gmail.com",
"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": "git@github.com:ifaim/nestjs-express-cassandra.git"
},
"homepage": "https://github.com/ifaim/nestjs-express-cassandra",
"peerDependencies": {
"@nestjs/common": "^5.1.0",
"@nestjs/core": "^5.1.0",
"reflect-metadata": "0.1.12",
"rxjs": "^6.0.0"
},
"devDependencies": {
"@nestjs/common": "^5.5.0",
"@nestjs/core": "^5.5.0",
"@types/node": "^10.12.18",
"husky": "^1.3.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.3.3",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@types/cassandra-driver": "^3.5.0",
"express-cassandra": "^2.2.4",
"merge-deep": "^3.0.2"
},
"keywords": [
"nestjs",
"cassandra",
"apache-cassandra",
"datastax",
"orm",
"express-cassandra",
"node",
"nodejs",
"javascript"
],
"engines": {
"node": ">=4.2.4"
}
}