UNPKG

2.2 kBJSONView Raw
1{
2 "name": "@nestjs/typeorm",
3 "version": "8.0.3",
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": "16.0.2",
23 "@commitlint/config-angular": "16.0.0",
24 "@nestjs/common": "8.2.5",
25 "@nestjs/core": "8.2.5",
26 "@nestjs/platform-express": "8.2.5",
27 "@nestjs/testing": "8.2.5",
28 "@types/jest": "27.4.0",
29 "@types/node": "17.0.8",
30 "@types/supertest": "2.0.11",
31 "@types/uuid": "8.3.4",
32 "@typescript-eslint/eslint-plugin": "5.9.1",
33 "@typescript-eslint/parser": "5.9.1",
34 "eslint": "8.7.0",
35 "eslint-config-prettier": "8.3.0",
36 "eslint-plugin-import": "2.25.4",
37 "husky": "7.0.4",
38 "jest": "27.4.7",
39 "lint-staged": "12.1.7",
40 "mysql": "2.18.1",
41 "pg": "8.7.1",
42 "prettier": "2.5.1",
43 "reflect-metadata": "0.1.13",
44 "release-it": "14.12.3",
45 "rxjs": "7.5.2",
46 "supertest": "6.2.1",
47 "ts-jest": "27.1.3",
48 "typeorm": "0.2.41",
49 "typescript": "4.5.4"
50 },
51 "dependencies": {
52 "uuid": "8.3.2"
53 },
54 "peerDependencies": {
55 "@nestjs/common": "^8.0.0",
56 "@nestjs/core": "^8.0.0",
57 "reflect-metadata": "^0.1.13",
58 "rxjs": "^7.2.0",
59 "typeorm": "^0.2.34"
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}