-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 2.23 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
{
"name": "root",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"generate-compatibility-suite": "lerna run generate-stories && lerna run generate-tests",
"build": "lerna run build",
"build:showcase": "lerna run build:showcase",
"test": "lerna run test",
"screenshot-test": "lerna run screenshot-test",
"regenerate-screenshots": "lerna run regenerate-screenshots",
"development:storybook": "lerna run development:storybook",
"development:link": "yarn link --workspace @netcracker/qubership-apihub-api-doc-viewer && yarn link @netcracker/qubership-apihub-graphapi --save-dev && yarn link @netcracker/qubership-apihub-api-diff --save && yarn link @netcracker/qubership-apihub-api-unifier --save-dev && yarn link @netcracker/qubership-apihub-json-crawl --save-dev",
"development:unlink": "yarn unlink @netcracker/qubership-apihub-graphapi --no-save && yarn unlink @netcracker/qubership-apihub-api-diff --no-save && yarn unlink @netcracker/qubership-apihub-api-unifier --no-save && yarn unlink @netcracker/qubership-apihub-json-crawl --no-save",
"lint:check": "eslint -c .eslintrc.json . --ext .js,.cjs,.ts,.json --ignore-path .gitignore --max-warnings 0 --report-unused-disable-directives",
"lint:fix": "npm run lint:check -- --fix",
"update-lock-file": "update-lock-file @netcracker"
},
"dependencies": {
"@netcracker/qubership-apihub-api-diff": "dev",
"@netcracker/qubership-apihub-api-unifier": "dev",
"@netcracker/qubership-apihub-graphapi": "dev",
"@netcracker/qubership-apihub-json-crawl": "dev"
},
"devDependencies": {
"@netcracker/qubership-apihub-compatibility-suites": "dev",
"@netcracker/qubership-apihub-jest-chrome-in-docker-environment": "2.0.1",
"@netcracker/qubership-apihub-npm-gitflow": "3.1.1",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"@types/lodash-es": "4.17.12",
"dpdm": "3.14.0",
"eslint": "8.48.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.3",
"eslint-plugin-storybook": "0.6.13",
"js-yaml": "^4.1.0",
"lerna": "^8.2.2",
"lodash-es": "4.17.23"
},
"eslintConfig": {
"extends": ".eslintrc.json"
}
}