forked from dotansimha/graphql-code-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@graphql-codegen/root",
"private": true,
"repository": "[email protected]:dotansimha/graphql-code-generator.git",
"author": "dotansimha <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "lerna clean --yes && rm -rf node_modules",
"build": "lerna run build --ignore @graphql-codegen/live-demo",
"test": "lerna run test --ignore @graphql-codegen/live-demo",
"lint": "lerna run lint --ignore @graphql-codegen/live-demo",
"precommit": "lint-staged",
"test-and-build": " yarn build && yarn test",
"prerelease": "yarn test-and-build",
"prerelease:canary": "yarn test-and-build",
"release": "lerna publish --exact --force-publish=\"*\" --ignore @graphql-codegen/live-demo",
"release:canary": "lerna publish --force-publish=\"*\" --canary --exact --ignore @graphql-codegen/live-demo",
"ci:release:canary": "lerna publish --force-publish=\"*\" --preid \"alpha-`git rev-parse --short HEAD`\" --canary --exact --yes --ignore @graphql-codegen/live-demo",
"generate:examples": "./dev-test/generate-all.sh",
"build-website": "cd website && yarn && yarn build"
},
"workspaces": [
"packages/*",
"packages/utils/*",
"packages/plugins/*",
"website/live-demo"
],
"devDependencies": {
"@types/common-tags": "1.8.0",
"@types/glob": "7.1.1",
"@types/graphql": "14.0.7",
"@types/jest": "24.0.11",
"@types/mkdirp": "0.5.2",
"@types/node": "10.14.2",
"@types/request": "2.48.1",
"apollo-link": "1.2.11",
"graphql": "14.1.1",
"graphql-tag": "2.10.1",
"graphql-tools": "4.0.4",
"husky": "1.3.1",
"jest": "24.5.0",
"lerna": "3.13.1",
"lint-staged": "8.1.5",
"microbundle": "0.11.0",
"rimraf": "2.6.3",
"ts-jest": "24.0.0",
"tslint": "5.14.0",
"typescript": "3.3.4000",
"react-apollo": "2.5.2",
"react-apollo-hooks": "0.4.3",
"apollo-server": "2.4.8"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"git add"
],
"*.{js,json,css,md,ts,tsx}": [
"prettier --write",
"git add -f"
]
},
"resolutions": {
"upath": "1.1.0"
}
}