-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "graphql-directive",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"test": "yarn workspaces run test",
"prebuild": "yarn clean",
"build": "nx run-many --target=build --skip-nx-cache",
"clean": "yarn workspaces run clean",
"publish:canary": "yarn build && npx lerna publish --canary --force-publish",
"publish:stable": "yarn build && yarn test && npx lerna publish --conventional-commits --create-release github",
"precoverage": "ts-node script/merge-coverage.ts",
"coverage": "npx istanbul report --include coverage/coverage-final.json --dir coverage --report html --report lcov",
"posttest": "yarn coverage",
"upgrade": "ncu -u --deep"
},
"private": true,
"devDependencies": {
"@nrwl/nx-cloud": "latest",
"@types/jest": "^29.5.0",
"lerna": "^6.6.1",
"nx": "15.7.2",
"prettier": "^2.8.7",
"typescript": "^5.0.4",
"istanbul": "^0.4.5",
"istanbul-lib-coverage": "^3.2.0",
"@types/istanbul-lib-coverage": "^2.0.4",
"glob": "^9.3.4",
"ts-node": "^10.9.1",
"mkdirp": "^2.1.6",
"npm-check-updates": "^16.10.7"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}