-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathpackage.json
145 lines (145 loc) · 5.13 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"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": "yarn build:preview --output-dir ../dist/",
"build:preview": "yarn report && nx build storybook",
"builder": "nx run-many --target build report --projects",
"bundle": "nx build bundle",
"changeset": "changeset",
"ci": "cross-env NODE_ENV=production yarn builder tag:component,ui-icons --skip-nx-cache",
"ci:storybook": "cross-env NODE_ENV=development nx run storybook:build:ci --skip-nx-cache",
"clean": "yarn cleaner tag:component --skip-nx-cache",
"clean:bundle": "nx clean bundle --skip-nx-cache",
"clean:docs": "rimraf dist",
"clean:env": "rm -rf .env .storybook/chromatic.config.json",
"clean:preview": "nx clean storybook --skip-nx-cache",
"cleaner": "nx run-many --target clean --projects",
"compare": "cross-env NODE_ENV=production node --no-warnings ./tasks/compare-compiled-output.js",
"component:build": "node --no-warnings ./tasks/component-builder.js",
"component:compare": "node --no-warnings ./tasks/component-compare.js",
"component:report": "node --no-warnings ./tasks/component-reporter.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": "yarn workspace @spectrum-css/generator run 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:bundle": "nx refresh bundle",
"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",
".storybook",
".github/actions/*",
"tools/*"
],
"devDependencies": {
"@adobe/token-diff-generator": "^1.3.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@nx/devkit": "^19.8.2",
"@spectrum-tools/postcss-add-theming-layer": "workspace:^",
"@spectrum-tools/postcss-property-rollup": "workspace:^",
"@spectrum-tools/postcss-rgb-mapping": "workspace:^",
"@yarnpkg/types": "^4.0.0",
"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.51",
"eslint": "^8.57.0",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-prettier": "^5.1.3",
"fast-glob": "^3.3.3",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.3.0",
"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.5.2",
"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-modules": "^6.0.1",
"postcss-preset-env": "^9.5.13",
"postcss-pseudo-classes": "^0.4.0",
"postcss-reporter": "^7.1.0",
"postcss-selector-replace": "^1.0.2",
"postcss-sorting": "^9.1.0",
"postcss-values-parser": "^6.0.2",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"semver": "^7.7.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"
},
"keywords": [
"design-system",
"spectrum",
"spectrum-css",
"adobe",
"adobe-spectrum"
],
"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]"
}