-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
70 lines (70 loc) · 3.13 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
70
{
"private": true,
"workspaces": [
"./extension",
"./webview"
],
"scripts": {
"format": "yarn turbo run format --parallel",
"lint": "yarn turbo run lint --parallel",
"test:vscode": "yarn turbo run test-vscode-run",
"test:jest": "yarn turbo run test --parallel",
"test": "run-p test:*",
"cover:clean": "rm -rf ./coverage/combined && rm -rf ./extension/coverage rm -rf ./webview/coverage",
"cover:merge:dvc-vscode-webview": "nyc merge ./webview/coverage/jest ./coverage/combined/dvc-vscode-webview-coverage-final.json",
"cover:merge:integration": "nyc merge ./extension/coverage/integration coverage/combined/integration-coverage-final.json",
"cover:merge:jest": "nyc merge ./extension/coverage/jest coverage/jest-coverage-final.json",
"cover:merge": "nyc merge ./coverage/combined coverage/coverage-final.json",
"cover:mkdir": "mkdir -p ./coverage/combined",
"cover:report:integration": "nyc report --reporter=lcov --temp-dir=./extension/coverage/integration",
"cover": "yarn turbo run cover-vscode-run --filter=dvc && yarn run-s cover:report:integration cover:mkdir && yarn run-p cover:merge:* && yarn run-s cover:merge cover:report cover:clean",
"cover:report": "nyc report --reporter=lcov --reporter=text --reporter=text-summary --temp-dir=./coverage --lines=95 --check-coverage",
"build": "yarn turbo run package",
"install-frozen-lockfile": "./scripts/install-frozen-lockfile.sh",
"dev-server": "yarn turbo run dev --parallel",
"postinstall": "husky install",
"storybook": "yarn workspace dvc-vscode-webview storybook",
"build-storybook": "yarn turbo run build-storybook --filter=dvc-vscode-webview",
"chromatic": "yarn workspace dvc-vscode-webview chromatic",
"setup:venv": "ts-node ./scripts/virtualenv-install.ts",
"scheduled:cli:test": "ts-node ./extension/src/test/cli/index.ts",
"create-svgs": "ts-node ./scripts/create-svgs.ts",
"svgr": "yarn workspace dvc-vscode-webview svgr"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vscode/codicons": "^0.0.29",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-check-file": "^1.1.0",
"eslint-plugin-etc": "^2.0.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-testing-library": "^5.1.0",
"eslint-plugin-unicorn": "^41.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.6.1",
"prettier-config-standard": "^5.0.0",
"ts-node": "^10.7.0",
"turbo": "^1.2.1",
"typescript": "^4.6.3"
},
"resolutions": {
"trim": "0.0.3"
}
}