-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "pulumi-fargate-service",
"version": "1.0.0",
"description": "A Pulumi module for creating an AWS Fargate Service",
"main": "dist/index.js",
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukemundy/pulumi-fargate-service.git"
},
"author": "Luke Mundy <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/lukemundy/pulumi-fargate-service/issues"
},
"homepage": "https://github.com/lukemundy/pulumi-fargate-service#readme",
"devDependencies": {
"@types/eslint": "^7.28.0",
"@types/node": "^14.17.4",
"@types/prettier": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@pulumi/aws": "^4.16.0",
"@pulumi/pulumi": "^3.10.2",
"@pulumi/random": "^4.2.0"
}
}