-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.86 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
{
"name": "@boulevard/blvd-book-sdk",
"version": "2.0.8",
"description": "A JS client for the Boulevard API",
"main": "lib/blvd.js",
"typings": "lib/blvd.js",
"type": "module",
"scripts": {
"build": "yarn run clean && yarn run rollup -c rollup.config.js",
"clean": "rm -rf lib*",
"test": "npx jest",
"gen": "exec scripts/gen-schemas.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Boulevard/book-sdk.git"
},
"author": "Boulevard Product & Engineering (https://joinblvd.com/)",
"contributors": [
"James Bradley <[email protected]>",
"Maciej Kaszubowski <[email protected]>"
],
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Boulevard/book-sdk/issues"
},
"homepage": "https://github.com/Boulevard/book-sdk#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.13.0",
"@boulevard/eslint-config": "^2.2.0",
"@graphql-codegen/cli": "1.21.5",
"@graphql-codegen/introspection": "1.18.2",
"@graphql-codegen/typescript": "1.22.1",
"@graphql-codegen/typescript-document-nodes": "1.17.12",
"@graphql-codegen/typescript-graphql-files-modules": "1.18.1",
"@graphql-codegen/typescript-graphql-request": "^4.3.4",
"@graphql-codegen/typescript-operations": "1.18.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^26.0.22",
"graphql-codegen-typescript-mock-data": "^2.0.0",
"jest": "^26.6.3",
"jest-ts-auto-mock": "^2.0.0",
"rollup": "^2.61.1",
"ts-auto-mock": "^3.5.0",
"ts-jest": "^26.5.6",
"ttypescript": "^1.5.13",
"typedoc": "^0.20.36",
"typescript": "~4.2.3"
},
"dependencies": {
"@rollup/plugin-json": "^4.1.0",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"graphql-tag": "^2.12.6"
}
}