-
Notifications
You must be signed in to change notification settings - Fork 195
/
package.json
131 lines (131 loc) · 4.53 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"private": true,
"name": "spectrum-css-monorepo",
"version": "0.0.0",
"license": "Apache-2.0",
"author": "Adobe",
"homepage": "https://opensource.adobe.com/spectrum-css/",
"repository": {
"type": "git",
"url": "https://github.com/adobe/spectrum-css.git"
},
"bugs": {
"url": "https://github.com/adobe/spectrum-css/issues"
},
"scripts": {
"build": "yarn builder tag:component,ui-icons",
"build:docs": "nx build storybook --output-dir ../dist/",
"build:preview": "nx build storybook",
"builder": "nx run-many --target build report --projects",
"changeset": "changeset",
"ci": "cross-env NODE_ENV=production yarn build --skip-nx-cache",
"ci:storybook": "cross-env NODE_ENV=development nx run storybook:build:ci --skip-nx-cache",
"clean": "yarn cleaner tag:component",
"clean:docs": "rimraf dist",
"clean:preview": "nx clean storybook",
"cleaner": "nx run-many --target clean --projects",
"compare": "cross-env NODE_ENV=production node --no-warnings ./tasks/compare-compiled-output.js",
"dev": "cross-env NODE_ENV=development nx run storybook:build:docs",
"format": "yarn formatter tag:component",
"formatter": "nx run-many --target format --projects",
"lint": "yarn linter tag:component",
"linter": "nx run-many --target lint --verbose --projects",
"new": "nx run @spectrum-css/generator:new",
"postinstall": "husky || true && yarn refresh",
"precommit": "lint-staged --allow-empty --config lint-staged.config.js",
"publish:docs": "cross-env NODE_ENV=production yarn build:docs && gh-pages -d dist/ -f -e . --nojekyll",
"refresh": "yarn refresh:env && yarn refresh:config",
"refresh:config": "bash ./tasks/chromatic-config-creation.sh || exit 0",
"refresh:env": "bash ./tasks/copy-env-from-root.sh || exit 0",
"release": "yarn ci && changeset publish",
"report": "yarn reporter tag:component",
"reporter": "nx run-many --target report --projects",
"start": "cross-env NODE_ENV=development nx start storybook",
"test": "cross-env NODE_ENV=development nx test storybook",
"test:plugins": "cross-env NODE_ENV=production nx run-many --target test --projects tag:plugin",
"tester": "cross-env NODE_ENV=development nx run storybook:test:scope",
"validate": "yarn validator tag:component",
"validator": "nx run-many --target validate --verbose --projects",
"version:packages": "changeset version && yarn --mode=\"update-lockfile\""
},
"workspaces": [
"components/*",
"plugins/*",
"tokens",
"ui-icons",
"generator",
".storybook",
".github/actions/*"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@nx/devkit": "^19.8.2",
"@spectrum-css/cyclebutton": "^3.1.3",
"@spectrum-css/quickaction": "^3.1.1",
"@spectrum-css/searchwithin": "^5.1.3",
"@spectrum-css/splitbutton": "^8.1.2",
"at-rule-packer": "^0.4.2",
"autoprefixer": "^10.4.19",
"colors": "^1.4.0",
"cross-env": "^7.0.3",
"cssnano": "^7.0.3",
"cssnano-preset-advanced": "^7.0.6",
"diff": "^7.0.0",
"diff2html": "^3.4.48",
"eslint": "^8.57.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.1.3",
"fast-glob": "^3.3.2",
"gh-pages": "^6.2.0",
"husky": "^9.1.6",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"node-gyp": "^10.1.0",
"npm-registry-fetch": "^18.0.2",
"nunjucks": "^3.2.4",
"nx": "^19.8.2",
"open": "^10.1.0",
"pajv": "^1.2.0",
"postcss": "^8.4.49",
"postcss-combininator": "workspace:^",
"postcss-extend": "^1.0.5",
"postcss-hover-media-feature": "^1.0.2",
"postcss-import": "^16.1.0",
"postcss-licensing": "^2.0.0",
"postcss-load-config": "^5.1.0",
"postcss-preset-env": "^9.5.13",
"postcss-pseudo-classes": "^0.4.0",
"postcss-reporter": "^7.1.0",
"postcss-rgb-mapping": "workspace:^",
"postcss-selector-replace": "^1.0.2",
"postcss-sorting": "^9.1.0",
"postcss-splitinator": "workspace:^",
"postcss-values-parser": "^6.0.2",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-header": "^2.0.1",
"stylelint-high-performance-animation": "^1.10.0",
"stylelint-order": "^6.0.4",
"stylelint-selector-bem-pattern": "^4.0.1",
"stylelint-use-logical": "^2.1.2",
"tar": "^7.4.3",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=20"
},
"browserslist": [
"last 2 Edge versions",
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 iOS versions"
],
"packageManager": "[email protected]"
}