forked from momentum-design/momentum-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.86 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
{
"name": "momentum-design",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0",
"yarn": ">=3.0.0"
},
"private": true,
"type": "commonjs",
"workspaces": [
"./packages/**/*"
],
"scripts": {
"analyze": "yarn workspaces foreach --topological-dev -p run analyze",
"build": "yarn workspaces foreach --topological-dev -p run build",
"test": "NODE_ENV=test yarn workspaces foreach --topological-dev -p run test",
"clean": "yarn workspaces foreach --topological-dev -p run clean",
"publish:npmjs": "yarn workspaces foreach --topological-dev -p run publish:npmjs",
"postinstall": "husky install ./config/husky",
"upgrade:vscode": "yarn dlx @yarnpkg/sdks vscode",
"analyze:config": "eslint \"./config/**\"",
"run-this-test": "md-automation",
"clean:plop": "rimraf ./config/plop/dist",
"build:plop": "yarn clean:plop && node ./config/plop/esbuild.config.plop.js",
"generate": "yarn generate:plop && yarn install",
"generate:plop": "yarn build:plop && plop --plopfile config/plop/dist/plopfile.mjs",
"docs:build": "yarn tokens build && yarn docs build",
"docs:api:generate": "yarn workspaces foreach run docs:api:generate",
"docs:api:extract": "yarn workspaces foreach run docs:api:extract",
"scripts:git": "node ./scripts/git/main.js",
"scripts:packages": "node ./scripts/packages.js",
"telemetry": "yarn workspace @momentum-design/telemetry",
"icons": "yarn workspace @momentum-design/icons",
"illustrations": "yarn workspace @momentum-design/illustrations",
"tokens": "yarn workspace @momentum-design/tokens",
"token-builder": "yarn workspace @momentum-design/token-builder",
"automation": "yarn workspace @momentum-design/automation",
"docs": "yarn workspace @momentum-design/docs",
"builder": "yarn workspace @momentum-design/builder",
"common": "yarn workspace @momentum-design/common",
"figma-plugin-assets-export": "yarn workspace @momentum-design/figma-plugin-assets-export",
"animations": "yarn workspace @momentum-design/animations",
"brand-visuals": "yarn workspace @momentum-design/brand-visuals"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@momentum-design/automation": "workspace:^",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"astro-eslint-parser": "^0.9.0",
"esbuild": "^0.15.12",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-astro": "^0.21.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.1",
"jest": "^29.2.2",
"node-plop": "^0.31.0",
"plop": "^3.1.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.4",
"yargs": "^17.6.0"
}
}