generated from NaverPayDev/ts-monorepo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.47 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
{
"name": "actions",
"author": "@NaverPayDev/frontend",
"repository": {
"type": "git",
"url": "https://github.com/NaverPayDev/actions.git"
},
"description": "actions",
"version": "0.0.0",
"scripts": {
"start": "turbo run start",
"build": "turbo run build",
"prepare": "lefthook install",
"action:donotmergeaction": "pnpm --filter do-not-merge-action",
"action:requireapprovalcommentaction": "pnpm --filter require-approval-comment-action",
"action:autoassignpullrequesttoauthoraction": "pnpm --filter auto-assign-pull-request-to-author-action",
"action:creatediscussion": "pnpm --filter create-discussion",
"action:requestissueattributeaction": "pnpm --filter request-issue-attribute-action",
"action:deletestalebranch": "pnpm --filter delete-stale-branch",
"test": "turbo run test",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "pnpm run lint --fix",
"prettier": "prettier --check '**/*.{json,yaml,md,ts,tsx,js,jsx}'",
"prettier:fix": "prettier --write '**/*.{json,yaml,md,ts,tsx,js,jsx}'",
"markdownlint": "markdownlint '**/*.md' '#.changeset' '#**/CHANGELOG.md'",
"markdownlint:fix": "markdownlint --fix '**/*.md' '#.changeset' '#**/CHANGELOG.md'",
"clean": "turbo run clean && rm -rf ./node_modules && pnpm i",
"release:canary": "pnpm run build && changeset publish --no-git-tag",
"release": "pnpm run build && changeset publish"
},
"lint-staged": {
"**/*.{json,yaml,md,ts,tsx,js,jsx}": "prettier --check",
"**/*.{ts,tsx,js,jsx}": "eslint"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@naverpay/eslint-config": "^0.2.0",
"@naverpay/markdown-lint": "^0.0.2",
"@naverpay/prettier-config": "^0.0.2",
"@size-limit/preset-big-lib": "^11.0.2",
"glob": "^9.3.4",
"lint-staged": "^15.0.1",
"size-limit": "^11.0.2",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@8.14.3",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@naverpay/commit-helper": "^1.0.0",
"@octokit/graphql-schema": "^15.18.0",
"@octokit/rest": "^20.1.1",
"@vercel/ncc": "^0.38.1",
"date-fns": "^3.6.0",
"lefthook": "^1.6.10"
},
"engines": {
"node": "^18.12.0",
"pnpm": "^8.14.3"
}
}