forked from luisgreen/amplify_deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 859 Bytes
/
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
{
"name": "@pz-mxu/amplify_deployment",
"version": "0.1.0",
"description": "GitHub action creates a deployment into an existing Amplify aplication.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "ncc -m build src/index.js --license licenses.txt",
"lint": "eslint src/**/*.js --ignore-path .gitignore --fix"
},
"author": "Luis Chacón",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.8.2",
"@actions/github": "^5.0.3",
"aws-sdk": "^2.1151.0",
"axios": "^0.27.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"typescript": "^4.7.3"
}
}