-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 1.77 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
{
"name": "postgraphile-nest",
"version": "1.0.5",
"description": "Nestjs module for incorporating PostGraphile into your application",
"author": "Alex Aldana",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig.json",
"precommit": "lint-staged",
"test:ci": "jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "tslint -c tslint.json 'lib/**/*.ts'",
"test": "jest --coverage",
"prepare:publish": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next"
},
"dependencies": {
"graphile-utils": "^4.10.0",
"graphql-playground-middleware-express": "^1.7.22",
"lodash": "^4.17.20",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@nestjs/common": "^7.6.6",
"@nestjs/core": "^7.6.6",
"@nestjs/platform-express": "^7.6.6",
"@nestjs/testing": "^7.6.6",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.22",
"@types/sinon": "^9.0.10",
"@types/supertest": "^2.0.10",
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.7",
"postgraphile": "^4.10.0",
"prettier": "^2.2.1",
"sinon": "^9.2.4",
"supertest": "^6.1.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"peerDependencies": {
"@nestjs/common": "^7.6.6",
"@nestjs/core": "^7.6.6",
"postgraphile": "^4.10.0",
"reflect-metadata": "^0.1.13"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
}
}