forked from Shopify/graphql-tools-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.04 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
{
"name": "graphql-tools",
"description": "A collection of utilities for GraphQL used in web projects at Shopify",
"private": true,
"engines": {
"node": ">=v8.12.0",
"yarn": ">=1.9.4"
},
"author": "Shopify Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/graphql-tools-web.git"
},
"bugs": {
"url": "https://github.com/shopify/graphql-tools-web/issues"
},
"homepage": "https://github.com/shopify/graphql-tools-web",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rm -rf './packages/**/*.{js,d.ts}'",
"prebuild": "yarn run clean",
"build": "lerna run build",
"bootstrap": "lerna bootstrap",
"type-check": "tsc --noEmit",
"pretest": "node scripts/introspection.js && lerna run pretest",
"test": "jest --config ./config/jest/config.json",
"test:watch": "yarn test --watch",
"lint:scripts": "eslint './**/*.ts' --ext .ts --format codeframe --max-warnings 0",
"lint:json": "prettier './**/*.json' --list-different",
"lint:graphql": "prettier './**/*.{graphql,gql}' --list-different",
"lint": "yarn lint:scripts && yarn lint:json && yarn lint:graphql",
"format:scripts": "yarn lint:scripts --fix",
"format:json": "prettier './**/*.json' --write",
"format:graphql": "prettier './**/*.{graphql,gql}' --write",
"format": "yarn format:scripts && yarn format:json && yarn format:graphql",
"prepublishOnly": "yarn type-check && yarn lint && yarn test",
"release": "lerna publish && git push --follow-tags"
},
"devDependencies": {
"@shopify/eslint-plugin": "^36.0.2",
"@types/fs-extra": "^8.1.0",
"@types/glob": "^7.1.1",
"@types/jest": "^25.2.1",
"@types/node": "^10.0.4",
"@types/yargs": "^15.0.4",
"eslint": "^6.5.0",
"graphql": "^14.0.0",
"in-publish": "^2.0.0",
"jest": "^25.3.0",
"jest-extended": "^0.11.5",
"lerna": "^2.11.0",
"prettier": "^2.0.4",
"typescript": "3.8.3",
"ts-jest": "25.3.1"
},
"dependencies": {
"fs-extra": "^9.0.0"
}
}