forked from getlift/lift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.34 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
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
{
"name": "serverless-lift",
"license": "MIT",
"homepage": "https://github.com/getlift/lift",
"repository": "https://github.com/getlift/lift",
"description": "Lift",
"dependencies": {
"@aws-cdk/aws-apigatewayv2": "1.107",
"@aws-cdk/aws-apigatewayv2-integrations": "1.107",
"@aws-cdk/aws-certificatemanager": "1.107",
"@aws-cdk/aws-cloudfront": "1.107.0",
"@aws-cdk/aws-cloudfront-origins": "1.107",
"@aws-cdk/aws-cloudwatch": "1.107.0",
"@aws-cdk/aws-events": "1.107.0",
"@aws-cdk/aws-iam": "1.107.0",
"@aws-cdk/aws-lambda": "1.107.0",
"@aws-cdk/aws-s3": "1.107.0",
"@aws-cdk/aws-sns": "1.107.0",
"@aws-cdk/aws-sqs": "1.107.0",
"@aws-cdk/core": "1.107.0",
"aws-sdk": "^2.737.0",
"chalk": "^4.1.0",
"change-case": "^4.1.1",
"cidr-split": "^0.1.2",
"js-yaml": "^3.14.1",
"lodash": "^4.17.21",
"log-symbols": "^4.0.0",
"mime-types": "^2.1.30",
"node-notifier": "^8.0.0",
"ora": "^5.0.0",
"pascal-case": "^3.1.2",
"tslib": "^1.13.0"
},
"devDependencies": {
"@serverless/test": "^7.11.0",
"@serverless/typescript": "^2.35.0",
"@types/chai": "^4.2.12",
"@types/jest": "^26.0.22",
"@types/js-yaml": "^3.12.5",
"@types/json-schema": "^7.0.7",
"@types/mime-types": "^2.1.0",
"@types/node": "^10.17.28",
"@types/node-notifier": "^8.0.0",
"@types/sinon": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"aws-sdk-mock": "^5.1.0",
"chai": "^4.2.0",
"esbuild-node-tsc": "^1.4.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"globby": "^10.0.2",
"jest": "^26.6.3",
"json-schema-to-ts": "^1.6.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"serverless": "^2.35.0",
"sinon": "^9.2.4",
"stdout-stderr": "^0.1.13",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"peerDependencies": {
"serverless": "^2.35.0"
},
"engines": {
"node": ">=15.14.0",
"npm": ">=7.7.6"
},
"files": [
"/dist"
],
"main": "dist/src/plugin.js",
"scripts": {
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"type": "tsc --noEmit",
"build": "etsc",
"watch": "nodemon",
"test": "jest"
},
"types": "lib/index.d.ts"
}