forked from lidofinance/wallets-testing-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "wallets-testing-modules",
"version": "0.0.0-development",
"private": true,
"workspaces": [
"packages/wallets",
"packages/extensions",
"packages/widgets",
"packages/nodes"
],
"description": "Common modules for testing wallets",
"sideEffects": false,
"scripts": {
"build": "yarn workspaces run build",
"test": "playwright test",
"lint": "eslint --ext ts ."
},
"devDependencies": {
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^18.11.15",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@qiwi/multi-semantic-release": "6.7.0",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"tslib": "^2.4.1",
"typescript": "4.7.4"
},
"lint-staged": {
".//src//*.ts": [
"yarn eslint --max-warnings=0"
],
"./**/*.{ts,js,md,json}": [
"prettier --write"
]
},
"release": {
"branches": [
"main"
]
}
}