-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 3.06 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
{
"name": "wl-web-configs",
"author": "Workleap",
"description": "Common configurations for building web apps and libraries at Workleap",
"private": true,
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gsoft-inc/wl-web-configs.git"
},
"scripts": {
"dev-webpack": "turbo run dev --filter=./samples/webpack/*",
"dev-webpack-msw": "turbo run dev-msw --filter=./samples/webpack/*",
"dev-rsbuild": "turbo run dev --filter=./samples/rsbuild/*",
"dev-rsbuild-msw": "turbo run dev-msw --filter=./samples/rsbuild/*",
"dev-storybook": "turbo run dev --filter=./samples/storybook",
"dev-docs": "retype start",
"build-docs": "retype start",
"build-pkg": "turbo run build --filter=./packages/*",
"build-webpack": "turbo run build --filter=./samples/webpack/*",
"build-rsbuild": "turbo run build --filter=./samples/rsbuild/*",
"build-storybook": "turbo run build --filter=./samples/storybook",
"serve-webpack": "turbo run serve-build --filter=./samples/webpack/*",
"serve-rsbuild": "turbo run serve-build --filter=./samples/rsbuild/*",
"serve-storybook": "turbo run serve-build --filter=./samples/storybook",
"prelint": "turbo run build --filter=./packages/*",
"lint": "turbo run lint --continue",
"eslint": "eslint . --ignore-pattern packages --ignore-pattern samples --max-warnings=-0 --cache --cache-location node_modules/.cache/eslint",
"typecheck": "tsc",
"syncpack": "syncpack lint",
"knip": "knip --cache --cache-location ./node_modules/.cache/knip",
"test": "turbo run test --continue",
"changeset": "changeset",
"publish-pkg": "changeset publish",
"publish-pr-pkg": "pkg-pr-new publish ./packages/* --packageManager=pnpm --pnpm",
"clean": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf dist .turbo .rslib public/mockServiceWorker.js node_modules/.cache",
"reset": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf dist node_modules",
"list-outdated-deps": "pnpm outdated -r --format list !eslint !@types/eslint !typescript",
"update-outdated-deps": "pnpm update -r --latest !eslint !@types/eslint !typescript"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@typescript-eslint/parser": "8.18.0",
"@workleap/eslint-plugin": "workspace:*",
"@workleap/typescript-configs": "workspace:*",
"eslint": "8.57.0",
"knip": "5.40.0",
"pkg-pr-new": "0.0.37",
"prettier": "3.4.2",
"retypeapp": "3.6.0",
"syncpack": "13.0.0",
"turbo": "2.3.3",
"typescript": "5.5.4"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9"
},
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}