-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
74 lines (74 loc) · 2.01 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
{
"name": "workspace-root",
"version": "12.1.3",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"lib"
],
"scripts": {
"build": "yarn workspace @millihq/tf-next-image-optimization build",
"build:local": "scripts/build-local.sh",
"test": "yarn build && jest --testPathIgnorePatterns e2e.*",
"test:e2e": "jest e2e.*",
"lint:eslint": "eslint .",
"fix:eslint": "eslint . --fix",
"lint:prettier": "prettier --check .",
"fix:prettier": "prettier --write .",
"release": "release-it --no-npm",
"release:ci": "release-it --no-increment --no-git.push --ci"
},
"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/jest": "^27.0.1",
"@types/mime-types": "^2.1.1",
"@types/node": "^14.0.0",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"@vercel/nft": "0.17.5",
"archiver": "^5.3.0",
"aws-sdk": "*",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"get-port": "^5.1.1",
"jest": "^27.0.6",
"jest-file-snapshot": "^0.5.0",
"mime-types": "^2.1.34",
"node-fetch": "^2.6.7",
"prettier": "^2.2.1",
"release-it": "^14.12.3",
"release-it-yarn-workspaces": "^2.0.1",
"ts-jest": "^27.0.5",
"typescript": "^4.6.3"
},
"resolutions": {
"aws-sdk": "2.1001.0"
},
"release-it": {
"git": {
"commitMessage": "v${version}",
"tagName": "@millihq/tf-next-image-optimization@${version}"
},
"npm": false,
"plugins": {
"release-it-yarn-workspaces": true,
"@release-it/bumper": {
"out": [
{
"file": "variables.tf",
"type": "text/plain"
}
]
},
"@ofhouse/keep-a-changelog": {
"filename": "CHANGELOG.md",
"addUnreleased": true
}
}
}
}