generated from Char2sGu/typescript-package-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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
{
"name": "@nestjs-devkit/mikro-graphql-flusher",
"version": "0.1.0",
"description": "GraphQL bulk-operation solution for MikroORM in Nest.",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"prebuild": "rimraf lib",
"build": "tsc -b tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"*.js\" \"*.json\"",
"format:diff": "prettier --list-different \"src/**/*.ts\"",
"lint": "eslint --cache \"src/**/*.ts\"",
"lint:fix": "eslint --cache --fix \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestjs-devkit/mikro-graphql-flusher.git"
},
"author": {
"name": "Char2s",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nestjs-devkit/mikro-graphql-flusher/issues"
},
"homepage": "https://github.com/nestjs-devkit/mikro-graphql-flusher#readme",
"keywords": [
"typescript",
"mikro-orm",
"graphql"
],
"devDependencies": {
"@mikro-orm/core": "^4.5.10",
"@mikro-orm/nestjs": "^4.3.1",
"@nestjs/common": "^8.2.4",
"@nestjs/core": "^8.2.4",
"@nestjs/graphql": "^9.1.2",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"graphql": "^15.8.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rxjs": "^7.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"files": [
"src",
"lib",
"!**/__test__",
"!**/tsconfig.*",
"README*.md"
],
"dependencies": {
"advanced-promises": "^1.0.0-beta.13",
"tslib": "^2.3.1"
}
}