UNPKG

2.21 kBJSONView Raw
1{
2 "name": "@nestjs/typeorm",
3 "version": "8.0.2",
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": "13.1.0",
23 "@commitlint/config-angular": "13.1.0",
24 "@nestjs/common": "8.0.5",
25 "@nestjs/core": "8.0.5",
26 "@nestjs/platform-express": "8.0.5",
27 "@nestjs/testing": "8.0.5",
28 "@types/jest": "26.0.24",
29 "@types/node": "16.0.0",
30 "@types/supertest": "2.0.11",
31 "@types/uuid": "8.3.1",
32 "@typescript-eslint/eslint-plugin": "4.29.0",
33 "@typescript-eslint/parser": "4.29.0",
34 "eslint": "7.32.0",
35 "eslint-config-prettier": "8.3.0",
36 "eslint-plugin-import": "2.23.4",
37 "husky": "7.0.1",
38 "jest": "27.0.6",
39 "lint-staged": "11.1.1",
40 "mysql": "2.18.1",
41 "pg": "8.7.1",
42 "prettier": "2.3.2",
43 "reflect-metadata": "0.1.13",
44 "release-it": "14.10.1",
45 "rxjs": "7.3.0",
46 "supertest": "6.1.4",
47 "ts-jest": "27.0.4",
48 "typeorm": "0.2.36",
49 "typescript": "4.3.5"
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}