This repository has been archived by the owner on May 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
68 lines (68 loc) · 2.05 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
{
"private": true,
"name": "typegraphql-relay",
"description": "Relay-compliant GraphQL server using TypeGraphQL.",
"engineStrict": true,
"engines": {
"node": ">=14.15.1"
},
"scripts": {
"lint": "eslint */**/*.{js,ts} --quiet --fix",
"start:dev": "NODE_ENV=development tsnd -r dotenv-flow/config --respawn --transpile-only src",
"test:watch": "jest --runInBand --watch",
"docker:up:dev": "docker-compose --env-file .env.development.local -p gql-development up -d",
"docker:up:test": "docker-compose --env-file .env.test.local -p gql-test up -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calmonr/typegraphql-relay.git"
},
"keywords": [
"graphql",
"typegraphql",
"relay"
],
"author": "Calmon Ribeiro <calmonrib@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/calmonr/typegraphql-relay/issues"
},
"homepage": "https://github.com/calmonr/typegraphql-relay#readme",
"dependencies": {
"apollo-server-express": "^2.24.1",
"class-validator": "^0.13.1",
"consola": "^2.15.3",
"dotenv-flow": "^3.2.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-relay": "^0.6.0",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typedi": "^0.10.0",
"typeorm": "^0.2.32",
"typeorm-typedi-extensions": "^0.4.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/express": "^4.17.11",
"@types/graphql-relay": "^0.6.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.1",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
}
}