-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.31 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
{
"name": "@arc-iac/tf-cdk-spa",
"version": "2.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MPL-2.0",
"keywords": [
"arc",
"spa-cdk",
"terraform",
"tf-cdk"
],
"scripts": {
"get": "cdktf get",
"build": "tsc",
"synth": "cdktf synth",
"compile": "tsc --pretty",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"upgrade": "npm i cdktf@latest cdktf-cli@latest",
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=14.0"
},
"dependencies": {
"@cdktf/provider-aws": "^19.6.0",
"cdktf": "^0.20.3",
"cdktf-cli": "^0.20.3",
"constructs": "^10.3.0",
"dotenv": "^16.0.3",
"mime-types": "^2.1.35",
"uniqid": "^5.4.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/mime-types": "^2.1.1",
"@types/node": "^20.1.7",
"@types/uniqid": "^5.3.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"author": "SourceFuse",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"url": "https://github.com/sourcefuse/arc-tf-cdk-spa-host",
"type": "git"
},
"files": [
"README.md",
"!*/__tests__",
"dist",
"src"
]
}