-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.17 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@allurereport/monorepo",
"version": "3.0.0-beta.5",
"private": true,
"description": "Allure framework TypeScript implementation",
"keywords": [],
"repository": "https://github.com/allure-framework/allure3",
"license": "Apache-2.0",
"author": "Qameta Software",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach -Avvpt run build",
"clean": "yarn workspaces foreach -Avvpt run clean",
"eslint": "yarn workspaces foreach -Avvpt run eslint",
"eslint:format": "yarn workspaces foreach -Avvpt run eslint:format",
"lint-staged": "lint-staged",
"prepare": "husky",
"prettier:format": "prettier --write './packages/*/{src,test,features}/**/*.{json,js,ts,tsx}' package.json ./packages/*/package.json",
"test": "yarn allure run -- yarn workspaces foreach -Avvpt run test"
},
"lint-staged": {
"packages/*/{src,test,features}/**/*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/package.json": [
"prettier --write"
]
},
"resolutions": {
"backbone.marionette@npm:3.5.1/backbone": "^1.6.0",
"backbone.marionette@npm:3.5.1/underscore": "^1.13.6"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.6.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint": "^8.56.11",
"@types/node": "^20.17.9",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"allure": "workspace:*",
"babel-plugin-prismjs": "^2.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-n": "^17.10.1",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.2",
"rimraf": "^6.0.1",
"tslib": "^2.7.0",
"typescript": "^5.6.3"
},
"dependenciesMeta": {
"@trivago/[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
}
},
"packageManager": "[email protected]"
}