-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 2.91 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
{
"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": {
"postinstall": "pnpm build",
"build": "pnpm build:tsup && pnpm build:swc && pnpm build:eslint && pnpm build:stylelint && pnpm --filter \"!@workleap/tsup-configs\" --filter \"!@workleap/swc-configs\" --filter \"!@workleap/eslint-plugin\" --filter \"!@workleap/stylelint-configs\" --filter \"!./sample/*\" -r build",
"build:tsup": "pnpm --filter \"@workleap/tsup-configs\" build",
"build:swc": "pnpm --filter \"@workleap/swc-configs\" build",
"build:eslint": "pnpm --filter \"@workleap/eslint-plugin\" build",
"build:stylelint": "pnpm --filter \"@workleap/stylelint-configs\" build",
"test": "jest",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:eslint": "eslint . --max-warnings=0 --cache --cache-location node_modules/.cache/eslint",
"lint:stylelint": "stylelint \"**/*.css\" --cache --cache-location node_modules/.cache/stylelint",
"lint:knip": "knip",
"lint:types": "pnpm -r --parallel --filter \"!@workleap/typescript-configs\" exec tsc",
"changeset": "changeset",
"ci-release": "pnpm build && changeset publish",
"clean": "pnpm -r --include-workspace-root --parallel exec pnpm dlx rimraf dist node_modules/.cache",
"reset": "pnpm -r --include-workspace-root --parallel exec pnpm dlx rimraf dist node_modules",
"dev-sample": "pnpm --filter \"./sample/*\" -r --parallel dev",
"dev-sample-msw": "pnpm --filter \"./sample/*\" -r --parallel dev-msw",
"build-sample": "pnpm --filter \"./sample/*\" -r build",
"serve-sample": "pnpm --filter \"./sample/*\" -r --parallel serve-build",
"dev-docs": "retype start",
"list-outdated-deps": "pnpm outdated -r --format list !eslint",
"update-outdated-deps": "pnpm update -r --latest !eslint"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@typescript-eslint/parser": "7.6.0",
"@workleap/eslint-plugin": "workspace:*",
"@workleap/typescript-configs": "workspace:*",
"eslint": "8.57.0",
"jest": "29.7.0",
"knip": "5.9.4",
"prettier": "3.2.5",
"retypeapp": "3.5.0",
"stylelint": "16.3.1",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"pnpm":{
"overrides": {
"minimist": "^0.2.4"
}
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}