forked from nestjs/mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "@s4p/nest-nmdb",
"version": "0.0.1",
"description": "Nest - modern, fast, powerful node.js web framework (@nmdb)",
"author": "Kamil Mysliwiec",
"repository": "https://github.com/shang-package/nest-nmdb.git",
"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"
},
"devDependencies": {
"@nestjs/common": "^5.1.0",
"@nestjs/core": "^5.1.0",
"@types/node": "^7.0.41",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0",
"rxjs-compat": "^6.2.1",
"ts-node": "^3.3.0",
"typescript": "^2.8.0"
},
"peerDependencies": {
"@nestjs/common": "^5.1.0",
"@nestjs/core": "^5.1.0",
"@s4p/nmdb": "^0.1.1",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"dependencies": {}
}