forked from lidofinance/wallets-testing-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.43 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.43 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
52
53
54
55
56
57
58
59
60
61
{
"name": "wallets-testing-modules",
"version": "0.0.1",
"description": "Common modules for testing wallets",
"private": true,
"workspaces": [
"packages/*",
"wallets-testing/"
],
"sideEffects": false,
"scripts": {
"build": "tsc --build",
"test": "playwright test",
"lint": "eslint --ext ts .",
"publish": "release-it --ci",
"publish:dry": "release-it --ci --dry-run"
},
"devDependencies": {
"@release-it-plugins/workspaces": "^3.2.0",
"@release-it/conventional-changelog": "^5.1.1",
"@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",
"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",
"release-it": "^15.6.0",
"tslib": "^2.4.1",
"typescript": "4.7.4"
},
"lint-staged": {
"./**/src/**/*.ts": [
"yarn eslint --max-warnings=0"
],
"./**/*.{ts,js,md,json}": [
"prettier --write"
]
},
"release-it": {
"git": {
"commit": false,
"tag": true
},
"github": {
"release": true
},
"npm": {
"ignoreVersion": true
},
"plugins": {
"@release-it-plugins/workspaces": true,
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
}