-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.81 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.81 KB
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
{
"name": "changeset-actions",
"author": "@NaverPayDev/frontend",
"repository": {
"type": "git",
"url": "https://github.com/NaverPayDev/changeset-actions.git"
},
"description": "Changeset actions for GitHub",
"version": "0.0.0",
"scripts": {
"start": "turbo run start",
"build": "turbo run build",
"prepare": "lefthook install",
"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": {
"@naverpay/eslint-config": "^0.2.0",
"@naverpay/markdown-lint": "^0.0.2",
"@naverpay/prettier-config": "^0.0.2",
"@types/fs-extra": "^8.0.0",
"@types/node": "^20.14.9",
"lint-staged": "^15.0.1",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@9.13.2",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@naverpay/commit-helper": "^1.0.0",
"@vercel/ncc": "^0.38.1",
"fs-extra": "^8.1.0",
"lefthook": "^1.6.10"
}
}