-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.82 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
{
"name": "@thuoe/gql-util-directives",
"version": "0.0.0-development",
"description": "A simple utility package of GraphQL schema directives",
"keywords": [
"graphql",
"directives",
"apollo-server",
"typescript"
],
"homepage": "https://github.com/thuoe/util-directives#readme",
"bugs": {
"url": "https://github.com/thuoe/util-directives/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thuoe/gql-util-directives.git"
},
"license": "ISC",
"author": "Eddie Thuo",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -r dist",
"build:prod": "tsc --project tsconfig.prod.json && tsc-alias -p tsconfig.prod.json",
"build:server": "tsc --project tsconfig.server.json",
"dev": "nodemon --project tsconfig.server.json server/index.ts",
"lint": "eslint .",
"test": "jest --silent",
"test:watch": "npm run test -- --watch test/*.ts",
"prepare": "npm run build:prod",
"release": "semantic-release"
},
"dependencies": {
"@graphql-tools/schema": "^10.0.2",
"@graphql-tools/utils": "^10.0.13",
"cheerio": "^1.0.0-rc.12",
"graphql": "^16.8.1",
"log4js": "^6.9.1"
},
"devDependencies": {
"@apollo/server": "^4.10.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"semantic-release": "^23.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}