forked from maticzav/graphql-shield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"private": true,
"author": "Matic Zavadlal <matic.zavadlal@gmail.com>",
"license": "MIT",
"workspaces": [
"./website",
"./packages/*",
"./examples/*"
],
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf packages/*/dist",
"build": "node scripts/build.js",
"test": "jest",
"test:ci": "jest --coverage",
"prerelease": "yarn build",
"release": "changeset publish",
"release:canary": "(node scripts/canary-release.js && yarn build && yarn changeset publish --tag alpha) || echo Skipping Canary...",
"prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.{ts,tsx,graphql,yml}\""
},
"devDependencies": {
"@changesets/cli": "2.17.0",
"@types/jest": "26.0.24",
"@types/node": "15.6.1",
"codecov": "3.8.3",
"husky": "6.0.0",
"jest": "27.4.7",
"lint-staged": "11.2.6",
"prettier": "2.4.1",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"ts-jest": "27.1.3",
"ts-node": "10.4.0",
"typescript": "4.3.5"
},
"resolutions": {
"@changesets/git": "1.1.2",
"prettier": "2.4.1"
}
}