generated from int128/typescript-actions-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.53 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
{
"name": "beachball-actions-monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ecraig12345/beachball-actions.git"
},
"scripts": {
"build": "lage build --verbose",
"change": "beachball change",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --ext .js,.ts --cache",
"package": "lage package --verbose",
"prepare": "husky install",
"syncpack:check": "syncpack list-mismatches",
"syncpack": "syncpack fix-mismatches",
"test": "lage test --verbose"
},
"devDependencies": {
"@tsconfig/node20": "^20.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vercel/ncc": "^0.38.0",
"beachball": "^2.31.12",
"eslint": "^8.35.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"lage": "^2.2.3",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"rimraf": "^6.0.0",
"syncpack": "^12.0.0",
"ts-jest": "^29.0.5",
"typescript": "~5.5.0"
},
"workspaces": [
"*",
"packages/*"
],
"beachball": {
"branch": "main",
"tag": "latest",
"ignorePatterns": [
"**/*.test.ts",
"**/jest.config.js"
]
},
"lint-staged": {
"*.!(js|ts)": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}