-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"private": true,
"license": "Apache-2.0",
"repository": "https://github.com/interledger/open-payments",
"engines": {
"pnpm": "^8.15.6",
"node": "20"
},
"packageManager": "pnpm@8.15.6",
"scripts": {
"lint": "eslint --max-warnings=0 --fix .",
"format": "prettier --write . && pnpm lint",
"lint:docs": "pnpm --filter docs lint",
"format:docs": "pnpm --filter docs format",
"checks": "pnpm check:prettier && pnpm check:lint",
"check:lint": "eslint --max-warnings=0 .",
"check:prettier": "prettier --check .",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"prettier": "^3.6.2",
"typescript": "^5.8.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "none",
"embeddedLanguageFormatting": "off"
}
}