-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
95 lines (95 loc) · 2.54 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
90
91
92
93
94
95
{
"name": "@dealmore/terraform-aws-nextjs-ws",
"version": "1.0.0-canary.5",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"test:prepare": "docker-compose up -d",
"test:runtime": "jest packages/runtime/**",
"test:not:runtime": "jest packages/** --testPathIgnorePatterns \"packages/runtime\"",
"test": "jest packages/**",
"test:e2e:prepare": "node test/build-fixtures.js",
"test:e2e": "jest test/routes.test.ts",
"release": "release-it --no-npm",
"release:ci": "release-it --no-increment --no-git.push --ci",
"postinstall": "patch-package"
},
"devDependencies": {
"@millihq/sammy": "^2.0.1",
"@ofhouse/keep-a-changelog": "2.3.0-no-increment-fix",
"@release-it/bumper": "^3.0.1",
"@tsconfig/node14": "^1.0.1",
"@types/aws-lambda": "^8.10.76",
"@types/hjson": "^2.4.2",
"@types/jest": "^27.0.2",
"@types/node": "^14.0.0",
"aws-sdk": "*",
"dotenv": "^8.2.0",
"fs-extra": "^9.1.0",
"hjson": "^3.2.2",
"jest": "*",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.6.2",
"release-it": "^14.12.3",
"release-it-yarn-workspaces": "^2.0.1",
"tmp": "^0.2.1",
"ts-jest": "*",
"turbo": "^1.2.4",
"typescript": "*"
},
"resolutions": {
"@types/aws-lambda": "^8.10.95",
"@vercel/ncc": "^0.33.4",
"archiver": "^5.3.0",
"aws-sdk": "2.1001.0",
"jest": "27.2.1",
"ts-jest": "27.0.5",
"typescript": "4.6.4"
},
"release-it": {
"git": {
"commitMessage": "v${version}",
"tagName": "packages-v${version}"
},
"npm": false,
"plugins": {
"release-it-yarn-workspaces": true,
"@release-it/bumper": {
"out": [
{
"file": "modules/api/variables.tf",
"type": "text/plain"
},
{
"file": "modules/cloudfront-proxy-config/variables.tf",
"type": "text/plain"
},
{
"file": "modules/deploy-controller/variables.tf",
"type": "text/plain"
},
{
"file": "modules/proxy/variables.tf",
"type": "text/plain"
},
{
"file": "modules/statics-deploy/variables.tf",
"type": "text/plain"
},
{
"file": "examples/*/main.tf",
"type": "text/plain"
}
]
},
"@ofhouse/keep-a-changelog": {
"filename": "CHANGELOG.md",
"addUnreleased": true
}
}
}
}