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.37 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 <laurinquast@googlemail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"packages/todo-example/*"
],
"devDependencies": {
"@babel/core": "7.19.1",
"@babel/preset-env": "7.19.1",
"@babel/preset-typescript": "7.18.6",
"@changesets/cli": "2.24.4",
"@changesets/changelog-github": "0.4.6",
"@types/jest": "27.5.2",
"babel-jest": "27.5.1",
"bob-the-bundler": "2.0.0",
"chalk": "4.1.2",
"globby": "12.2.0",
"husky": "8.0.1",
"jest": "27.5.1",
"lint-staged": "12.5.0",
"patch-package": "6.4.7",
"prettier": "2.7.1",
"semver": "7.3.7",
"ts-jest": "27.1.5",
"tsc-watch": "4.6.2",
"typescript": "4.7.4"
},
"resolutions": {
"graphql": "16.0.0-experimental-stream-defer.5",
"ts-node": "~10.9.0"
},
"scripts": {
"build": "bob build",
"watch-build": "tsc-watch --onSuccess \"bob build\"",
"test": "jest --no-watchman",
"test:end2end": "jest --no-watchman --config jest.end2end.config.js",
"prerelease": "yarn build",
"release": "changeset publish",
"postinstall": "patch-package",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"**/*.{ts,tsx,graphql,yml,json}": [
"prettier --write"
]
}
}