-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.75 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
{
"name": "ts-monorepo-template",
"author": "@NaverPayDev/frontend",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/NaverPayDev/ts-monorepo-template.git"
},
"description": "ts-monorepo-template",
"keywords": [
"naver",
"naver-financial",
"monorepo",
"monorepo-template",
"template",
"typescript"
],
"scripts": {
"start": "turbo run start",
"build": "turbo run build",
"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": {
"eslint": "^8.57.0",
"@changesets/cli": "^2.27.9",
"@naverpay/eslint-config": "^1.0.7",
"@naverpay/markdown-lint": "^0.0.3",
"@naverpay/prettier-config": "^1.0.0",
"lefthook": "^1.8.2",
"lint-staged": "^15.2.10",
"turbo": "^2.2.3",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "22.11.0",
"pnpm": "9.12.3"
}
}