-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 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
{
"name": "gitea-to-s3",
"version": "1.0.0",
"description": "Native AWS stack to expose an api for copying code from gitea webhooks to s3 for use in ci/cd",
"repository": {
"type": "git",
"url": "git+https://github.com/cheeseandcereal/gitea-to-s3.git"
},
"bugs": {
"url": "https://github.com/cheeseandcereal/gitea-to-s3/issues"
},
"keywords": [
"webhook",
"api",
"aws",
"gitea"
],
"author": "Adam Crowder",
"license": "Unlicense",
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 180
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"env": {
"node": true
},
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/camelcase": "off",
"require-atomic-updates": "off",
"max-len": "off"
}
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"cdk": "cdk",
"lint": "eslint --ext .ts --format unix bin/ lib/ && prettier --check bin lib '{bin,lib}/*.ts'",
"format": "prettier --write '{bin,lib}/*.ts'",
"clean": "rm -rf bin/*.js lib/*.js bin/*.d.ts lib/*.d.ts cdk.out"
},
"devDependencies": {
"@types/archiver": "^5.3.2",
"@types/aws-lambda": "^8.10.115",
"@types/node": "18.16.6",
"@types/unzipper": "^0.10.6",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"aws-cdk": "^2.78.0",
"esbuild": "^0.17.18",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"archiver": "^5.3.1",
"aws-cdk-lib": "^2.78.0",
"@aws-sdk/client-s3": "^3.329.0",
"@aws-sdk/lib-storage": "^3.329.0",
"constructs": "^10.2.17",
"got": "^11.8.6",
"source-map-support": "^0.5.21",
"unzipper": "^0.10.11"
}
}