This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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": "@nabla/js",
"private": true,
"description": "The Nabla JS SDK makes it quick and easy to build an excellent healthcare communication experience in your web app.",
"version": "1.0.0-alpha03",
"license": "MIT",
"author": "Nabla",
"type": "module",
"main": "index.js",
"repository": "github:nabla/nabla-js",
"keywords": [
"nabla",
"web",
"javascript",
"typescript"
],
"scripts": {
"start": "yarn codegen && tsup --watch",
"build": "tsup",
"codegen": "tsx scripts/codegen.ts",
"tsc": "tsc",
"test": "jest",
"lint": "yarn lint-ci --fix --cache",
"lint-ci": "eslint ./ --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --cache --write --list-different --ignore-unknown $(git diff --name-only --relative)",
"prettier-all": "yarn prettier-ci --write",
"prettier-ci": "prettier --cache --ignore-path .gitignore --check '**/*.{ts,tsx,graphql,js,html,css,json,md,yml,xml,svg}'",
"qa": "yarn codegen && yarn tsc && yarn lint-ci && yarn prettier-ci && yarn test && yarn build"
},
"prettier": {
"trailingComma": "all"
},
"dependencies": {
"@apollo/client": "^3.7.11",
"await-lock": "^2.2.2",
"graphql": "^16.8.1",
"graphql-ws": "^5.12.1",
"uuidjs": "^5.0.1"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@arnaud-barre/eslint-config": "^1.0.19",
"@graphql-codegen/cli": "^3.2.2",
"@graphql-codegen/client-preset": "^2.1.1",
"@nabla/tnode": "^0.9.0",
"@types/node": "^18.15.11",
"eslint": "^8.37.0",
"graphql": "^16.8.1",
"jest": "^27.5.1",
"prettier": "^2.8.7",
"tsup": "^6.7.0",
"tsx": "^3.12.6",
"typescript": "^4.9.5"
},
"jest": {
"transform": {
"\\.ts": "@nabla/tnode/jest"
}
}
}