forked from mikro-orm/nestjs-realworld-example-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.52 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "nestjs-realworld-example-app",
"version": "1.0.0",
"description": "NestJS + MikroORM realworld API example (MySQL)",
"main": "index.js",
"scripts": {
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest --config=jest.json",
"test:watch": "jest --watch --config=jest.json",
"test:coverage": "jest --config=jest.json --coverage --coverageDirectory=coverage",
"test:e2e": "APIURL=http://localhost:3000/api ./e2e/run-api-tests.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikro-orm/nestjs-realworld-example-app.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikro-orm/nestjs-realworld-example-app/issues"
},
"homepage": "https://github.com/mikro-orm/nestjs-realworld-example-app#readme",
"dependencies": {
"@mikro-orm/core": "^4.0.7",
"@mikro-orm/mysql": "^4.0.7",
"@mikro-orm/nestjs": "^4.2.0",
"@mikro-orm/reflection": "^4.0.7",
"@mikro-orm/sql-highlighter": "^1.0.1",
"@nestjs/common": "^7.4.4",
"@nestjs/core": "^7.4.4",
"@nestjs/platform-express": "^7.4.4",
"@nestjs/swagger": "^4.6.1",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"crypto": "^1.0.1",
"crypto-js": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.3",
"slug": "^3.3.5",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@mikro-orm/cli": "^4.0.7",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"atob": ">=2.1.2",
"@nestjs/cli": "^7.5.1",
"@nestjs/schematics": "^7.1.2",
"@nestjs/testing": "^7.4.4",
"deep-extend": ">=0.6.0",
"extend": ">=3.0.2",
"jest": "^26.4.2",
"supertest": "^5.0.0",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "4.0.3",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"prettier": "^2.1.2"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}