forked from Urigo/graphql-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.9 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
{
"private": true,
"repository": "https://github.com/Urigo/graphql-modules.git",
"homepage": "https://graphql-modules.com/",
"author": "dotansimha <[email protected]>",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"packages/tools/*",
"bundle-test"
],
"nohoist": [
"**/react-scripts",
"**/react-scripts/**"
]
},
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"build:api-docs": "./generate-api-docs.sh",
"lint": "tslint -c tslint.json 'packages/*/src/**/*.ts'",
"format": "prettier --write 'packages/*/{src,tests}/**/*.ts'",
"precommit": "lint-staged",
"clean": "lerna clean --yes && rm -rf node_modules",
"prerelease": "yarn build && yarn test",
"release": "lerna publish --exact --force-publish=\"*\" --ignore bundle-test",
"release:canary": "lerna publish --force-publish=\"*\" --canary --exact --ignore bundle-test",
"ci:release:canary": "git update-index --assume-unchanged .npmrc && lerna publish --ignore bundle-test --force-publish=\"*\" --preid \"alpha-`git rev-parse --short HEAD`\" --canary --exact --yes",
"deploy-website": "yarn build:api-docs && cd website && yarn && yarn build"
},
"devDependencies": {
"@types/jest": "25.1.3",
"bundlesize": "0.18.0",
"graphql": "14.6.0",
"husky": "4.2.3",
"jest": "25.1.0",
"jest-junit": "10.0.0",
"lerna": "3.20.2",
"lint-staged": "10.0.7",
"prettier": "1.19.1",
"reflect-metadata": "0.1.13",
"replace-in-file": "5.0.2",
"rimraf": "3.0.2",
"tslint": "5.20.1",
"ts-jest": "25.2.1",
"typedoc": "0.16.10",
"typedoc-plugin-docusaurus": "1.0.14"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true
}
}