-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "silent-pay",
"author": "Anmol Sharma",
"license": "MIT",
"homepage": "https://github.com/Bitshala-Incubator/silent-pay",
"repository": {
"type": "git",
"url": "https://github.com/Bitshala-Incubator/silent-pay.git"
},
"bugs": {
"url": "https://github.com/Bitshala-Incubator/silent-pay/issues"
},
"keywords": [
"silent payments",
"bitcoin"
],
"type": "module",
"workspaces": [
"./packages/*"
],
"scripts": {
"format": "prettier --ignore-path .gitignore --loglevel=silent --write \"**/*.+(js|ts|json)\" \"!dist/*\"",
"format:check": "prettier --check \"**/*.+(js|ts|json)\" \"!dist/*\"",
"lint": "eslint --ext .js,.ts . --ignore-pattern \"dist/*\""
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^15.2.0",
"prettier": "^2.7.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"lint-staged": {
"*.ts": [
"bash -c 'npm run lint'",
"bash -c 'npm run types:check --ws'"
],
"*.{ts,yaml,json}": [
"bash -c 'npm run format'"
]
}
}