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
61 lines (61 loc) · 1.44 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.44 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
{
"name": "@iaminfinity/express-cassandra",
"version": "0.2.0",
"description": "Nest - modern, fast, powerful node.js web framework (@express-cassandra)",
"author": "Fahim Rahman",
"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"
},
"repository": {
"type": "git",
"url": "git@github.com:ifaim/nestjs-express-cassandra.git"
},
"homepage": "https://github.com/ifaim/nestjs-express-cassandra",
"peerDependencies": {
"@nestjs/common": "^5.3.2",
"@nestjs/core": "^5.3.2",
"express-cassandra": "^2.2.3",
"reflect-metadata": "0.1.12",
"rxjs": "^6.0.0"
},
"devDependencies": {
"@nestjs/common": "^5.3.2",
"@nestjs/core": "^5.3.2",
"@types/node": "^10.10.2",
"express-cassandra": "^2.2.3",
"husky": "^0.14.3",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.3.2",
"typescript": "^3.0.3"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@types/cassandra-driver": "^3.4.0",
"cassandra-driver": "^3.5.0"
},
"keywords": [
"nestjs",
"cassandra",
"apache-cassandra",
"datastax",
"orm",
"express-cassandra",
"node",
"nodejs",
"javascript"
],
"engines": {
"node": ">=4.2.4"
}
}