forked from n1ru4l/graphql-live-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "graphql-live-queries-root",
"version": "1.0.0",
"main": "index.js",
"author": "n1ru4l <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"packages/todo-example/*"
],
"devDependencies": {
"@babel/core": "7.16.5",
"@babel/preset-env": "7.16.5",
"@babel/preset-typescript": "7.16.5",
"@changesets/cli": "2.18.1",
"@types/jest": "27.0.3",
"babel-jest": "27.4.5",
"bob-the-bundler": "1.5.1",
"chalk": "4.1.2",
"globby": "12.0.2",
"husky": "7.0.4",
"jest": "27.4.5",
"lint-staged": "11.2.6",
"patch-package": "6.4.7",
"prettier": "2.5.1",
"semver": "7.3.5",
"ts-jest": "27.1.1",
"tsc-watch": "4.5.0",
"typescript": "4.5.4"
},
"resolutions": {
"graphql": "16.0.0-experimental-stream-defer.5"
},
"scripts": {
"build": "yarn ts:transpile && bob build",
"watch-build": "tsc-watch --project tsconfig.build.json --onSuccess \"bob build\"",
"test": "jest --no-watchman",
"test:end2end": "jest --no-watchman --config jest.end2end.config.js",
"ts:transpile": "tsc --project tsconfig.build.json",
"prerelease": "yarn build",
"release": "changeset publish",
"postinstall": "patch-package",
"prepare": "husky install",
"lint-staged": "lint-staged",
"release:canary": "(node scripts/canary-release.js && yarn build && yarn changeset publish --tag alpha) || echo Skipping Canary..."
},
"lint-staged": {
"**/*.{ts,tsx,graphql,yml,json}": [
"prettier --write"
]
}
}