-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 2.2 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
86
87
88
89
{
"name": "aws-spa",
"version": "3.0.0",
"description": "A no-brainer script to deploy a single page app on AWS",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lalalilo/aws-spa.git"
},
"author": "nicgirault <[email protected]>",
"keywords": [
"react",
"vue",
"angular",
"create-react-app",
"deploy",
"aws",
"s3",
"cloudfront",
"acm",
"route53"
],
"tags": [
"react",
"deploy",
"aws"
],
"bugs": {
"url": "https://github.com/lalalilo/aws-spa/issues"
},
"homepage": "https://github.com/lalalilo/aws-spa#readme",
"license": "MIT",
"scripts": {
"build": "babel src -d lib --extensions '.ts'",
"prebuild": "yarn check-types && yarn test",
"run-cli": "babel-node --extensions '.ts' src/cli.ts",
"check-types": "tsc",
"test": "jest",
"prepare": "husky install",
"prettier": "prettier --config prettier.config.js --write 'src/**/*.{js,ts}'"
},
"bin": {
"aws-spa": "./lib/cli.js"
},
"files": [
"lib/**/*"
],
"release": {
"branches": [
"main",
"next"
]
},
"dependencies": {
"@aws-sdk/client-acm": "^3.667.0",
"@aws-sdk/client-cloudfront": "^3.667.0",
"@aws-sdk/client-iam": "^3.667.0",
"@aws-sdk/client-lambda": "^3.667.0",
"@aws-sdk/client-route-53": "^3.667.0",
"@aws-sdk/client-s3": "^3.667.0",
"adm-zip": "^0.5.9",
"inquirer": "^8.2.3",
"mime-types": "^2.1.35",
"yargs": "^17.5.1"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.0",
"@babel/node": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/preset-env": "^7.19.0",
"@babel/preset-typescript": "^7.18.6",
"@types/adm-zip": "^0.5.0",
"@types/inquirer": "^8.2.3",
"@types/jest": "^29.0.2",
"@types/mime-types": "^2.1.1",
"@types/node": "^16.11.7",
"@types/rimraf": "^3.0.2",
"@types/yargs": "^17.0.12",
"codecov": "^3.8.3",
"husky": "^8.0.1",
"jest": "^29.0.3",
"prettier": "^3.3.3",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"typescript": "^4.8.3"
}
}