-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "nestjs-graphile-worker",
"version": "0.8.1",
"description": "A Nest.js wrapper for Graphile Worker",
"author": "Alexandre Rousseau <[email protected]>",
"private": false,
"license": "MIT",
"homepage": "https://github.com/madeindjs/nestjs-graphile-worker",
"bugs": {
"url": "https://github.com/madeindjs/nestjs-graphile-worker/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madeindjs/nestjs-graphile-worker.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"publish:jsr": "deno publish --unstable-sloppy-imports",
"prerelease": "npm run build",
"test": "node --test -r ts-node/register src/**/*.spec.ts"
},
"dependencies": {
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"@nestjs/testing": "^10.1.2",
"@types/node": "^20.8.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.4.0"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0",
"graphile-worker": "^0.13.0 || ^0.14.0 || ^0.15.0 || ^0.16.0"
}
}