-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 KB
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
{
"name": "graphql-tag-printed",
"version": "0.1.0",
"description": "Mostly the same as graphql-tag but loader produces strings rather than ASTs",
"main": "index.js",
"author": "Abdelrahman Awad",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint . '**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier \"./**/*.js\" --write"
},
"files": [
"index.js"
],
"dependencies": {
"eval": "^0.1.4",
"graphql": "^15.0.0",
"graphql-tag": "^2.10.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.4",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"jest --maxWorkers=1 --bail --findRelatedTests"
]
}
}