-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.18 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
{
"name": "showcase",
"private": true,
"license": "MIT",
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@9.15.4",
"engines": {
"node": "22.x",
"pnpm": "9.x"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"preview": "turbo run preview --parallel",
"lint": "pnpm lint-lslint && pnpm lint-prettier && pnpm lint-stylelint && pnpm lint-depcruise && turbo run lint",
"lint-prettier": "prettier --check {apps,packages}/*/{src,e2e,vrt}/**/*.{js,jsx,ts,tsx,json,css,scss,md}",
"lint-prettier-fix": "prettier --write {apps,packages}/*/{src,e2e,vrt}/**/*.{js,jsx,ts,tsx,json,css,scss,md}",
"lint-lslint": "ls-lint",
"lint-stylelint": "stylelint {apps,packages}/*/src/**/*.{css,scss}",
"lint-depcruise": "depcruise apps packages --config .dependency-cruiser.js",
"test": "turbo run test",
"test-watch": "turbo run test-watch --parallel",
"analyse": "turbo run analyse",
"storybook": "turbo run storybook --parallel",
"build-storybook": "turbo run build-storybook",
"vrt": "turbo run vrt --continue",
"vrt-update": "turbo run vrt-update",
"vrt-show-report": "turbo run vrt-show-report --parallel",
"e2e": "turbo run e2e --continue",
"build-api": "turbo run build-api",
"lighthouse-mobile": "turbo run lighthouse-mobile",
"lighthouse-desktop": "turbo run lighthouse-desktop"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@ls-lint/ls-lint": "2.2.3",
"@playwright/test": "1.49.1",
"dependency-cruiser": "16.6.0",
"eslint": "9.16.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"msw": "2.4.9",
"prettier": "3.4.2",
"stylelint": "16.14.0",
"stylelint-config-css-modules": "4.4.0",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.10.1",
"turbo": "2.3.4",
"vitest": "2.1.8"
},
"msw": {
"workerDirectory": [
"apps/rotom/public",
"apps/smeargle/public"
]
},
"pnpm": {
"overrides": {
"@testing-library/dom": "10.4.0"
}
}
}