-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "nestjs-typeorm-commands",
"version": "0.1.0",
"description": "TypeORM CLI commands for NestJS",
"author": {
"name": "Michal Palys-Dudek",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/michaldudek/nestjs-typeorm-commands#readme",
"bugs": "https://github.com/michaldudek/nestjs-typeorm-commands/issues",
"repository": {
"type": "git",
"url": "https://github.com/michaldudek/nestjs-typeorm-commands.git"
},
"keywords": [
"nestjs",
"typeorm"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"dist": "dist"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint ./src",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@sqltools/formatter": "1.2.5",
"mkdirp": "1.0.4",
"rimraf": "3.0.2"
},
"devDependencies": {
"@nestjs/common": "9.1.6",
"@types/mkdirp": "1.0.2",
"@types/node": "16.0.0",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"nest-commander": "^3.0.0",
"prettier": "2.7.1",
"typeorm": "^0.3.0",
"typescript": "4.8.4"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0",
"nest-commander": "^3.0.0",
"typeorm": "^0.3.0"
}
}