-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 3.57 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
85
86
87
88
89
90
91
92
93
94
{
"name": "fractal",
"description": "Snowball's open-source design system mono-repository managed by Yarn 3",
"author": "Snowball Engineering Team <engineering@snowball.xyz> (https://github.com/orgs/snowball-tech)",
"private": true,
"contributors": [
"Clément PRÉVOT <clement@snowball.xyz> (https://github.com/clementprevot)"
],
"license": "MIT",
"keywords": [
"snowball",
"mono-repo",
"yarn",
"yarn3",
"vercel",
"javascript",
"typescript",
"react",
"testing-library",
"lodash",
"design-system",
"design-tokens",
"style-dictionary",
"storybook",
"figma",
"styleguide"
],
"homepage": "https://github.com/snowball-tech/fractal",
"repository": {
"type": "git",
"url": "git+https://github.com/snowball-tech/fractal.git"
},
"bugs": "https://github.com/snowball-tech/fractal/issues",
"packageManager": "yarn@4.6.0",
"engines": {
"yarn": "^4.0.0",
"node": ">=18 <=22"
},
"workspaces": [
"apps/*",
"packages/*"
],
"publishConfig": {
"access": "restricted"
},
"release": {
"extends": "@snowball-tech/semantic-release-config"
},
"scripts": {
"build": "NODE_ENV=production yarn workspaces foreach --all --topological-dev run build",
"build-vercel": "NODE_ENV=production yarn workspaces foreach --all --topological-dev run build-vercel",
"check-deps": "yarn depcheck --ignores='@snowball-tech/semantic-release-config,chromatic,lint-staged,nodemon,semantic-release,serve' & 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-freezer & yarn setup-husky) && yarn workspaces foreach --all -p --topological-dev run setup",
"setup-freezer": "is-ci && ./scripts/setup-freezer.sh",
"setup-husky": "is-ci || yarn husky",
"setup-from-vercel": "yarn setup-freezer && yarn workspaces foreach --all -p run setup-from-vercel",
"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/prettier-config": "^2.1.2",
"@snowball-tech/semantic-release-config": "^3.0.4",
"chromatic": "^11.25.2",
"depcheck": "^1.4.7",
"eslint": "^9.20.1",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"lint-staged": "^15.4.3",
"nodemon": "^3.1.9",
"prettier": "^3.5.1",
"semantic-release": "^24.2.2",
"serve": "^14.2.4"
},
"dependencies": {
"@snowball-tech/eslint-snowball-config": "^2.0.11",
"@yarnpkg/types": "^4.0.0"
}
}