generated from NaverPayDev/ts-monorepo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 2.02 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
{
"name": "pie",
"private": true,
"author": "@NaverPayDev/frontend",
"repository": {
"type": "git",
"url": "https://github.com/NaverPayDev/pie.git"
},
"description": "common packages of naver financial fe",
"version": "0.0.0",
"scripts": {
"prepare": "husky install && chmod 777 .husky/*",
"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' '#apps/docs/**/*.md' '#.changeset' '#**/CHANGELOG.md'",
"markdownlint:fix": "markdownlint --fix '**/*.md' '#apps/docs/**/*.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",
"build:docs": "turbo build:docs",
"storybook": "turbo start --filter ui-docs"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint"
],
"**/*.{ts,tsx,js,jsx,json,yaml}": [
"prettier --check"
],
"!(**/CHANGELOG.md|apps/docs/**/*.md|.changeset/**/*.md)*.md": [
"markdownlint"
]
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@naverpay/eslint-config": "^0.2.0",
"@naverpay/markdown-lint": "^0.0.2",
"@naverpay/prettier-config": "^0.0.2",
"core-js": "^3.29.0",
"glob": "^9.3.4",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.1",
"tsup": "^8.1.0",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "22.11.0",
"pnpm": "9.13.2"
}
}