-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.69 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": "skedify-workflow-mono",
"version": "0.0.0",
"private": true,
"description": "Repository that contains reusable workflows for Skedify",
"scripts": {
"prettier:run": "prettier --check '**/*.ts'",
"eslint:run": "eslint src/**/*.ts --cache",
"lint": "pnpm -s eslint:run && pnpm -s prettier:run",
"lint:fix": "pnpm -s eslint:run --fix && pnpm -s prettier:run --write",
"build": "concurrently -n \"package:\" \"pnpm:package:*\"",
"package:aggregate-release-notes": "ncc build -s -m -d --license licenses.txt src/aggregate-release-notes/main.ts -o aggregate-release-notes/dist",
"package:release-branch-tagger": "ncc build -s -m -d --license licenses.txt src/release-branch-tagger/main.ts -o release-branch-tagger/dist",
"package:release-creator": "ncc build -s -m -d --license licenses.txt src/release-creator/main.ts -o release-creator/dist",
"package:get-app-token": "ncc build -s -m -d --license licenses.txt src/get-app-token/main.ts -o get-app-token/dist",
"package:tagger": "ncc build -s -m -d --license licenses.txt src/tagger/main.ts -o tagger/dist",
"test": "jest --passWithNoTests",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skedify/github-workflows.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@google/generative-ai": "^0.12.0",
"@octokit/auth-app": "^6.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-syntax-flow": "^7.24.1",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@skedify/eslint-config": "^0.2.13",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.38.1",
"babel-eslint": "^10.1.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"prettier": {
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,md,yml,json}": "prettier --write",
"*.{ts}": "eslint --max-warnings=0 --cache --fix"
}
}