-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.11 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "glacier",
"description": "Snowball's open-source mono-repository managed by Yarn 3",
"author": "Snowball Engineering Team <[email protected]> (https://github.com/orgs/snowball-tech)",
"private": true,
"contributors": [
"Clément PRÉVOT <[email protected]> (https://github.com/clementprevot)"
],
"license": "MIT",
"keywords": [
"snowball",
"mono-repository",
"yarn",
"yarn3",
"javascript",
"typescript",
"eslint",
"eslint-config",
"prettier",
"testing-library",
"lodash",
"renovate",
"semantic-release"
],
"homepage": "https://github.com/snowball-tech/glacier",
"repository": {
"type": "git",
"url": "git+https://github.com/snowball-tech/glacier.git"
},
"bugs": "https://github.com/snowball-tech/glacier/issues",
"packageManager": "[email protected]",
"engines": {
"yarn": "^4.0.0",
"node": ">=18 <=20"
},
"workspaces": [
"packages/*"
],
"publishConfig": {
"access": "restricted"
},
"release": {
"extends": "@snowball-tech/semantic-release-config"
},
"scripts": {
"build": "NODE_ENV=production yarn workspaces foreach --all --topological-dev run build",
"check-deps": "yarn depcheck --ignores='@snowball-tech/semantic-release-config,lint-staged,semantic-release' & yarn workspaces foreach --all -p run check-deps",
"format": "yarn run -T format-root & yarn workspaces foreach --all -p run format",
"format-fix": "yarn run -T format-root-fix & yarn workspaces foreach --all -p run format-fix",
"format-root": "prettier --cache --check \"./!(apps|packages)\"",
"format-root-fix": "prettier --cache --write \"./!(apps|packages)\"",
"lint": "yarn run -T lint-root & yarn workspaces foreach --all -p run lint",
"lint-fix": "yarn run -T lint-root-fix & yarn workspaces foreach --all -p run lint-fix",
"lint-root": "eslint --cache './*'",
"lint-root-fix": "eslint --cache --fix './*'",
"publish-all": "multi-semantic-release",
"publish-all-local": "CI=true yarn publish-all",
"quality": "yarn run lint & yarn run format & yarn run types-check",
"quality-fix": "yarn run lint-fix && yarn run format-fix && yarn run types-check",
"presetup": "is-ci || yarn install",
"setup": "yarn run presetup && yarn setup-husky && yarn workspaces foreach --all -p run setup",
"setup-husky": "is-ci || yarn husky",
"types-check": "yarn workspaces foreach --all -p run types-check",
"update-deps": "yarn upgrade-interactive",
"update-references": "workspaces-to-typescript-project-references --includesRoot"
},
"devDependencies": {
"@monorepo-utils/workspaces-to-typescript-project-references": "^2.10.4",
"@qiwi/multi-semantic-release": "^7.1.2",
"@snowball-tech/eslint-snowball-config": "workspace:^",
"@snowball-tech/prettier-config": "workspace:^",
"@snowball-tech/semantic-release-config": "workspace:^",
"depcheck": "^1.4.7",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"semantic-release": "^24.2.0"
},
"dependencies": {
"@yarnpkg/types": "^4.0.0",
"eslint": "^9.15.0"
}
}