-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
{
"name": "@hydre/make_schema",
"version": "1.3.0",
"description": "An utility function to build a graphql schema",
"type": "module",
"main": "./index.js",
"scripts": {
"lint": "eslint . && prettier . --check",
"format": "prettier . --write && eslint . --fix",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydreio/make_schema.git"
},
"author": "Hydre",
"license": "UNLICENSE",
"bugs": {
"url": "https://github.com/hydreio/make_schema/issues"
},
"keywords": [
"graphql",
"schema"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/hydreio/make_schema#readme",
"dependencies": {
"graphql": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/eslint-parser": "7.22.15",
"eslint": "^8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"husky": "^4.3.8",
"lint-staged": "14.0.1",
"prettier": "3.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
}
}