-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
63 lines (63 loc) · 1.43 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
{
"name": "graphql-cli-monorepo",
"version": "4.1.0",
"private": true,
"author": "dotansimha <[email protected]>",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"packages/commands/*",
"website",
"integration"
]
},
"scripts": {
"release": "node scripts/release.js",
"release:next": "node scripts/release.js --tag=next",
"release:canary": "node scripts/release.js --canary",
"test": "lerna run test",
"build": "lerna run build",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"deploy:website": "cd website && yarn deploy"
},
"devDependencies": {
"@graphql-tools/load": "6.2.8",
"@types/express": "4.17.13",
"@types/fs-extra": "9.0.13",
"@types/fullname": "2.1.29",
"@types/inquirer": "7.3.3",
"@types/js-yaml": "3.12.7",
"@types/node": "14.17.33",
"@types/rimraf": "3.0.2",
"@types/tmp": "0.2.2",
"graphql": "15.7.2",
"husky": "4.3.8",
"lerna": "3.22.1",
"lint-staged": "10.5.4",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"typescript": "4.4.4"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true
},
"resolutions": {
"graphql": "15.7.2"
},
"dependencies": {
"@types/yargs": "15.0.14"
}
}