-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
46 lines (46 loc) · 1.41 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
{
"private": true,
"license": "Apache-2.0",
"repository": "https://github.com/interledger/open-payments",
"engines": {
"pnpm": "^8.15.6",
"node": "20"
},
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint --max-warnings=0 --fix .",
"format": "prettier --write . && pnpm lint",
"format:docs": "prettier --write ./docs/**/*.md",
"changeset:add": "pnpm changeset add",
"ci:version": "pnpm changeset version && pnpm i --lockfile-only",
"ci:publish": "pnpm changeset publish",
"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": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@swc/core": "^1.5.0",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^2.8.4",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"prettier": {
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "none"
}
}