forked from n1ru4l/graphql-codegen-relay-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 802 Bytes
/
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
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/graphql-codegen-relay-optimizer-plugin",
"packages/todo-app-example"
],
"lint-staged": {
"*.{js}": [
"eslint"
],
"*.{js,json,css,md,ts,tsx}": [
"prettier --write"
]
},
"scripts": {
"precommit": "lint-staged",
"postinstall": "yarn workspaces run build",
"eslint": "eslint --ext .ts,.js,.tsx --ignore-path .gitignore .",
"test": "yarn workspaces run test",
"build": "yarn workspaces run build"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jest": "24.1.3",
"husky": "4.3.8",
"jest": "24.9.0",
"lint-staged": "10.5.4",
"prettier": "2.3.0",
"ts-jest": "25.5.1"
},
"version": "0.0.0"
}