forked from nestjs/typeorm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "@nestjs/typeorm",
"version": "5.3.0",
"description":
"Nest - modern, fast, powerful node.js web framework (@typeorm)",
"author": "Kamil Mysliwiec",
"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.0",
"typeorm": "^0.2.7",
"typescript": "^2.8.0"
},
"dependencies": {
"uuid": "3.3.2"
},
"peerDependencies": {
"@nestjs/common": "^5.1.0",
"@nestjs/core": "^5.1.0",
"reflect-metadata": "0.1.12",
"rxjs": "^6.0.0",
"typeorm": "^0.2.7"
},
"lint-staged": {
"*.ts": ["prettier --write", "git add"]
}
}