forked from dotansimha/graphql-code-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.11 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
67
68
69
70
71
72
73
74
{
"name": "graphql-code-generator",
"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 live-demo",
"test": "lerna run test --ignore live-demo",
"lint": "lerna run lint --ignore live-demo",
"precommit": "lint-staged",
"test-and-build": "yarn test && yarn build",
"prerelease": "yarn test-and-build",
"prerelease:canary": "yarn test-and-build",
"release": "lerna publish --exact --force-publish=\"*\" --ignore live-demo",
"release:canary": "lerna publish --force-publish=\"*\" --canary --exact --ignore live-demo",
"ci:release:canary": "lerna publish --force-publish=\"*\" --canary --exact --yes --ignore 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",
"packages/old-templates/*"
],
"dependencies": {
"lerna": "2.11.0"
},
"devDependencies": {
"@types/glob": "7.1.1",
"@types/jest": "24.0.9",
"@types/mkdirp": "0.5.2",
"@types/node": "10.12.27",
"@types/request": "2.48.1",
"@types/common-tags": "1.8.0",
"@types/graphql": "14.0.7",
"husky": "1.3.1",
"lint-staged": "8.1.4",
"tslint": "5.13.0",
"typescript": "3.3.3333",
"graphql": "14.1.1",
"graphql-tag": "2.10.1",
"jest": "24.1.0",
"rimraf": "2.6.3",
"ts-jest": "24.0.0",
"graphql-tools": "4.0.4",
"apollo-link": "1.2.8",
"awesome-typescript-loader": "5.2.1",
"raw-loader": "1.0.0",
"webpack": "4.29.5",
"webpack-cli": "3.2.3",
"webpack-node-externals": "1.7.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"git add"
],
"*.{js,json,css,md,ts,tsx}": [
"prettier --write",
"git add -f"
]
},
"resolutions": {
"upath": "1.1.0"
},
"prettier": {
"printWidth": 120,
"singleQuote": true
}
}