forked from sid88in/serverless-appsync-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.66 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": "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",
"build": "tsc",
"lint": "eslint . && tsc --noEmit",
"prepare": "rm -rf lib && npm run build"
},
"devDependencies": {
"@serverless/test": "^9.0.0",
"@serverless/typescript": "^2.71.0",
"@types/jest": "^27.5.2",
"@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",
"jest": "^27.5.1",
"prettier": "^2.8.0",
"semantic-release": "^19.0.5",
"serverless": "^3.25.1",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@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",
"aws-sdk": "^2.1265.0",
"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"
}
}