UNPKG

2.22 kBJSONView Raw
1{
2 "name": "@nestjs/typeorm",
3 "version": "9.0.1",
4 "description": "Nest - modern, fast, powerful node.js web framework (@typeorm)",
5 "author": "Kamil Mysliwiec",
6 "license": "MIT",
7 "url": "https://github.com/nestjs/typeorm#readme",
8 "scripts": {
9 "build": "rm -rf dist && tsc -p tsconfig.json",
10 "format": "prettier --write \"**/*.ts\"",
11 "lint": "eslint 'lib/**/*.ts' --fix",
12 "prepublish:npm": "npm run build",
13 "publish:npm": "npm publish --access public",
14 "prepublish:next": "npm run build",
15 "publish:next": "npm publish --access public --tag next",
16 "test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
17 "test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch",
18 "prerelease": "npm run build",
19 "release": "release-it"
20 },
21 "devDependencies": {
22 "@commitlint/cli": "17.0.3",
23 "@commitlint/config-angular": "17.0.3",
24 "@nestjs/common": "9.0.8",
25 "@nestjs/core": "9.0.8",
26 "@nestjs/platform-express": "9.0.8",
27 "@nestjs/testing": "9.0.8",
28 "@types/jest": "28.1.6",
29 "@types/node": "17.0.8",
30 "@types/supertest": "2.0.12",
31 "@types/uuid": "8.3.4",
32 "@typescript-eslint/eslint-plugin": "5.33.0",
33 "@typescript-eslint/parser": "5.33.0",
34 "eslint": "8.21.0",
35 "eslint-config-prettier": "8.5.0",
36 "eslint-plugin-import": "2.26.0",
37 "husky": "8.0.1",
38 "jest": "28.1.3",
39 "lint-staged": "13.0.3",
40 "mysql": "2.18.1",
41 "pg": "8.7.3",
42 "prettier": "2.7.1",
43 "reflect-metadata": "0.1.13",
44 "release-it": "15.3.0",
45 "rxjs": "7.5.6",
46 "supertest": "6.2.4",
47 "ts-jest": "28.0.7",
48 "typeorm": "0.3.7",
49 "typescript": "4.7.4"
50 },
51 "dependencies": {
52 "uuid": "8.3.2"
53 },
54 "peerDependencies": {
55 "@nestjs/common": "^8.0.0 || ^9.0.0",
56 "@nestjs/core": "^8.0.0 || ^9.0.0",
57 "reflect-metadata": "^0.1.13",
58 "rxjs": "^7.2.0",
59 "typeorm": "^0.3.0"
60 },
61 "lint-staged": {
62 "*.ts": [
63 "prettier --write"
64 ]
65 },
66 "husky": {
67 "hooks": {
68 "commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
69 "pre-commit": "lint-staged"
70 }
71 },
72 "repository": {
73 "type": "git",
74 "url": "https://github.com/nestjs/typeorm"
75 }
76}