forked from iotaledger/firefly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.08 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
{
"private": true,
"workspaces": [
"packages/desktop",
"packages/shared",
"packages/backend/bindings/node"
],
"devDependencies": {
"@babel/eslint-parser": "^7.15.0",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-svelte3": "^3.2.0",
"husky": "^7.0.0",
"patch-package": "^6.2.2",
"prettier": "^2.3.2"
},
"scripts": {
"format": "prettier -w \"**/*.{ts,js,json,scss,css}\"",
"format-check": "prettier -c \"**/*.{ts,js,json,scss,css}\"",
"lint": "eslint . --cache",
"lint-debug": "eslint . --cache --debug",
"lint-fix": "eslint . --cache --fix",
"postinstall": "patch-package",
"pre-commit": "yarn format-check && yarn lint",
"prepare": "husky install",
"test": "yarn test:shared",
"test:shared": "cd packages/shared && yarn test"
},
"resolutions": {
"lodash": ">=4.17.21"
}
}