generated from NaverPayDev/ts-monorepo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.68 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.68 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
{
"name": "@naverpay/cli",
"private": true,
"author": "@NaverPayDev/frontend",
"repository": {
"type": "git",
"url": "https://github.com/NaverPayDev/cli.git"
},
"bugs": {
"url": "https://github.com/NaverPayDev/cli/issues"
},
"version": "0.0.0",
"homepage": "https://github.com/NaverPayDev/cli",
"scripts": {
"prepare": "husky install",
"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": "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",
"@types/node": "^20.12.7",
"husky": "^8.0.3",
"lint-staged": "^15.0.1",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@8.14.3"
}