-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "wallets-testing-modules",
"version": "0.0.0-semantic-release",
"description": "Common modules for testing wallets",
"private": true,
"workspaces": [
"packages/*"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "eslint --ext ts ."
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@lidofinance/yarn-workspaces-list": "^0.1.1",
"@qiwi/multi-semantic-release": "^3.17.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^27.4.0",
"@types/node": "^18.7.2",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"dotenv": "^16.0.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"lint-staged": "^12.2.2",
"prettier": "^2.5.1",
"rollup": "^2.75.6",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.4",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"lint-staged": {
"./**/src/**/*.ts": [
"yarn eslint --max-warnings=0"
],
"./**/*.{ts,js,md,json}": [
"prettier --write"
]
},
"packageManager": "yarn@3.1.1",
"dependencies": {
"playwright": "^1.25.0"
}
}