generated from NaverPayDev/ts-monorepo-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.8 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.8 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
50
51
{
"name": "@naverpay/code-style",
"version": "0.0.1",
"private": true,
"description": "code-style for naverpay",
"repository": {
"type": "git",
"url": "https://github.com/NaverPayDev/code-style.git"
},
"author": "@NaverPayDev/frontend",
"type": "commonjs",
"scripts": {
"build": "turbo build",
"prelint": "pnpm run build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"markdownlint": "markdownlint '**/*.md' '#.changeset' '#**/CHANGELOG.md'",
"markdownlint:fix": "markdownlint --fix '**/*.md' '#.changeset' '#**/CHANGELOG.md'",
"postinstall": "lefthook install",
"prettier": "prettier --check '**/*.{json,yaml,yml,md,ts,tsx,js,jsx}'",
"prettier:fix": "prettier --write '**/*.{json,yaml,yml,md,ts,tsx,js,jsx}'",
"release": "changeset publish --directory dist",
"release:canary": "changeset publish --no-git-tag --directory dist",
"test": "turbo test",
"test:watch": "turbo test:watch"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@naverpay/eslint-config": "workspace:*",
"@naverpay/eslint-plugin": "workspace:*",
"@naverpay/markdown-lint": "workspace:*",
"@naverpay/pite": "1.1.2",
"@naverpay/prettier-config": "workspace:*",
"@naverpay/stylelint-config": "workspace:*",
"lefthook": "^1.9.3",
"prettier": "^3.2.5",
"turbo": "^2.3.3",
"typescript": "^5.2.2",
"vite": "^6.3.5"
},
"packageManager": "pnpm@9.1.3",
"engines": {
"node": ">=20.13.1",
"pnpm": ">=9.1.3"
},
"pnpm": {
"overrides": {
"@changesets/cli>@changesets/assemble-release-plan": "github:NaverPayDev/changesets-assemble-release-plan"
}
}
}