-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "@hydre/graphql-lambda-ws",
"version": "2.3.7",
"description": "",
"type": "module",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint . && prettier . --check",
"format": "prettier . --write && eslint . --fix",
"postversion": "git push --follow-tags"
},
"keywords": [],
"author": "sceat",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-apigatewaymanagementapi": "^3.350.0",
"graphql": "^16.6.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "7.21.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"husky": "^4.3.8",
"lint-staged": "13.2.2",
"prettier": "2.8.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
}
}