-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "portal-sdk",
"version": "5.1.0",
"description": "Portal SDK for front end applications",
"main": "index.ts",
"private": true,
"repository": "git+https://github.com/stardog-union/portal-sdk.git",
"author": "Stardog Union <help@stardog.com>",
"homepage": "https://github.com/stardog-union/portal-sdk#readme",
"engines": {
"node": ">=18",
"yarn": ">=1.2.0"
},
"scripts": {
"build": "rm -rf ./dist/ && tsc --build ./tsconfig.build.json",
"generate": "graphql-codegen --config codegen.yml && yarn format",
"test": "jest",
"typecheck": "tsc --noEmit",
"format": "prettier --write ."
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/introspection": "^2.2.3",
"@graphql-codegen/typescript": "^2.8.8",
"@graphql-codegen/typescript-graphql-files-modules": "^2.2.1",
"@graphql-codegen/typescript-graphql-request": "^4.5.9",
"@graphql-codegen/typescript-operations": "^2.5.13",
"@types/cookiebot-sdk": "^2.43.4",
"@types/jest": "^29.2.5",
"@types/node": "^18",
"graphql": "^16.8.1",
"graphql-request": "^5.1.0",
"graphql-tag": "^2.12.6",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"node-ts": "^5.1.2",
"prettier": "^2.8.2",
"ts-jest": "^29.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"peerDependencies": {
"graphql-request": "^5.1.0"
},
"prettier": {
"singleQuote": true
}
}