forked from dotansimha/graphql-code-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.75 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
{
"name": "graphql-code-generator",
"private": true,
"repository": "[email protected]:dotansimha/graphql-code-generator.git",
"author": "dotansimha <[email protected]>",
"license": "MIT",
"scripts": {
"postinstall": "yarn build",
"clean": "lerna clean --yes && rm -rf node_modules",
"build": "lerna run build",
"test": "lerna run test",
"lint": "lerna run lint",
"precommit": "lint-staged",
"prerelease": "yarn build && yarn test",
"prerelease:canary": "yarn build && yarn test",
"release": "lerna publish --exact --force-publish=\"*\"",
"release:canary": "lerna publish --force-publish=\"*\" --canary --exact",
"generate:examples": "./dev-test/generate-all.sh"
},
"workspaces": [
"packages/*",
"packages/scripts/*",
"packages/templates/*"
],
"dependencies": {
"lerna": "2.11.0"
},
"devDependencies": {
"@types/glob": "5.0.35",
"@types/jest": "23.1.5",
"@types/mkdirp": "0.5.2",
"@types/node": "9.6.23",
"@types/request": "2.47.1",
"@types/common-tags": "1.4.0",
"@types/graphql": "0.13.3",
"husky": "0.14.3",
"lint-staged": "7.2.0",
"tslint": "5.10.0",
"typescript": "2.9.2",
"graphql": "0.13.2",
"graphql-tag": "2.9.2",
"jest": "23.4.0",
"rimraf": "2.6.2",
"ts-jest": "23.0.0",
"graphql-tools": "3.0.5",
"apollo-link": "1.2.2",
"awesome-typescript-loader": "5.2.0",
"raw-loader": "0.5.1",
"webpack": "4.16.0",
"webpack-cli": "3.0.8",
"webpack-node-externals": "1.7.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"git add"
],
"*.{js,json,css,md,ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true
}
}