-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "relay-graphql-js",
"version": "0.1.0",
"description": "shared relay utilities for graphql-js compatible parsers",
"main": "index.js",
"repository": "[email protected]:relay-tools/relay-graphql-js.git",
"author": "Rikki <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/**"
],
"scripts": {
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"test": "jest",
"test:watch": "jest --watch",
"release": "yarn build && changeset publish",
"lint": "tslint --project .",
"format": "prettier --write packages/*/{src,tests}/*"
},
"devDependencies": {
"@changesets/cli": "^2.24.1",
"@changesets/changelog-github": "^0.4.6",
"@types/jest": "^26.0.14",
"@types/node": "^12.7.4",
"@types/relay-compiler": "^8.0.0",
"@types/relay-config": "^6.0.0",
"graphql": "^15.3.0",
"jest": "26.4.2",
"prettier": "^2.1.2",
"relay-compiler": "^10.0.1",
"relay-compiler-language-typescript": "^13.0.1",
"relay-config": "^10.0.1",
"standard-version": "^9.0.0",
"ts-jest": "26.3.0",
"tslint": "^6.1.3",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.0.3"
}
}