-
Notifications
You must be signed in to change notification settings - Fork 187
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.71 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "serverless-appsync-plugin",
"version": "0.0.0-development",
"description": "AWS AppSync support for the Serverless Framework",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"repository": "https://github.com/sid88in/serverless-appsync-plugin",
"license": "MIT",
"files": [
"/lib"
],
"scripts": {
"test": "jest src/__tests__/.*\\.test\\.ts",
"test:watch": "jest src/__tests__/.*\\.test\\.ts --watch",
"test:e2e": "npm run build && jest --config jest.e2e.config.ts",
"test:all": "npm run test && npm run test:e2e",
"test:integration": "npm run build && jest --config jest.integration.config.ts",
"test:integration:typecheck": "tsc -p tsconfig.integration.json",
"test:integration:sweep": "ts-node integration/sweeper.ts",
"build": "tsc",
"lint": "eslint . && tsc --noEmit",
"lint:fix": "eslint . --fix",
"prepare": "husky && rm -rf lib & npm run build"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"@serverless/test": "^11.1.1",
"@serverless/typescript": "^2.71.0",
"@types/jest": "^30.0.0",
"@types/luxon": "^2.4.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"all-contributors-cli": "^6.24.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"fast-check": "^3.23.2",
"husky": "^9.1.7",
"jest": "^30.4.2",
"lint-staged": "^16.2.3",
"prettier": "^2.8.0",
"semantic-release": "^25.0.3",
"serverless": "^3.25.1",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.1",
"typescript": "~4.9.5"
},
"overrides": {
"cosmiconfig": {
"typescript": "~4.9.5"
},
"ajv-merge-patch": {
"fast-json-patch": "3.1.1"
}
},
"dependencies": {
"@aws-sdk/client-acm": "3.1039.0",
"@aws-sdk/client-appsync": "3.1039.0",
"@aws-sdk/client-cloudformation": "3.1039.0",
"@aws-sdk/client-cloudwatch-logs": "3.1039.0",
"@aws-sdk/client-route-53": "3.1039.0",
"@aws-sdk/credential-providers": "3.1039.0",
"@graphql-tools/merge": "^8.3.12",
"@serverless/utils": "^6.8.2",
"ajv": "^8.11.2",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.1.1",
"ajv-merge-patch": "^5.0.1",
"chalk": "^4.1.2",
"esbuild": "^0.17.11",
"globby": "^11.1.0",
"graphql": "^16.6.0",
"lodash": "^4.17.21",
"luxon": "^2.5.0",
"open": "^8.4.0",
"terminal-link": "^2.1.1"
},
"peerDependencies": {
"serverless": ">=3.0.0"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}