-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.09 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@naverpay/prometheus",
"version": "1.0.0",
"private": true,
"description": "nodejs prometheus exporter utilities by @naverpaydev",
"keywords": [
"naver",
"naver-financial",
"prometheus",
"prometheus-exporter"
],
"repository": {
"type": "git",
"url": "https://github.com/NaverPayDev/prometheus.git"
},
"author": "@NaverPayDev/frontend",
"type": "module",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean && rm -rf ./node_modules && pnpm i",
"postinstall": "lefthook install",
"lint": "eslint . --cache --cache-location .cache/.eslintcache",
"lint:fix": "pnpm run lint --fix",
"markdownlint": "markdownlint '**/*.md' '#.changeset' '#**/CHANGELOG.md'",
"markdownlint:fix": "markdownlint --fix '**/*.md' '#.changeset' '#**/CHANGELOG.md'",
"prettier": "prettier --check . --cache --cache-location .cache/.prettiercache",
"prettier:fix": "prettier --write . --cache --cache-location .cache/.prettiercache",
"release": "pnpm run build && changeset publish",
"release:canary": "pnpm run build && changeset publish --no-git-tag",
"test": "turbo run test",
"typecheck": "turbo run typecheck"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"**/*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/compat": "^1.4.0",
"@naverpay/eslint-config": "^2.3.1",
"@naverpay/eslint-plugin": "^2.2.0",
"@naverpay/markdown-lint": "^1.0.0",
"@naverpay/prettier-config": "^1.0.1",
"@turbo/gen": "^2.5.8",
"eslint": "^9.37.0",
"lefthook": "^1.13.6",
"lint-staged": "^16.2.3",
"prettier": "^3.6.2",
"turbo": "^2.5.8",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.33.4",
"engines": {
"node": "22.14.0",
"pnpm": "10.33.4"
}
}