forked from Esri/calcite-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 5.48 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
{
"name": "calcite-design-system",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"packages/calcite-components-angular/projects/component-library"
],
"scripts": {
"postinstall": "patch-package",
"build": "turbo run build --log-order=stream",
"clean": "turbo run clean --log-order=stream && rimraf node_modules",
"lint": "concurrently \"npm:lint:*\" \"turbo run lint --log-order=stream\"",
"lint:md": "prettier --write \"**/*.md\" >/dev/null && markdownlint \"{,documentation}/*.md\" --fix --dot --ignore-path .gitignore",
"lint:yml": "prettier --write \".github/**/*.yml\" >/dev/null",
"lint:json": "prettier --write \"*.json\" >/dev/null",
"publish:next": "lerna publish from-package --dist-tag next --yes",
"publish:rc": "lerna publish from-package --dist-tag rc --yes",
"publish:latest": "lerna publish from-package --yes",
"version:next": "npm run util:is-in-sync-with-origin-main && npm run util:is-working-tree-clean && lerna version --conventional-prerelease --preid next --no-git-tag-version --no-push --yes && npm run util:sync-linked-package-versions -- next",
"version:rc": "npm run util:is-in-sync-with-origin-rc && npm run util:is-working-tree-clean && lerna version --conventional-prerelease --preid rc --no-git-tag-version --no-push --yes && npm run util:sync-linked-package-versions -- rc",
"version:latest": "npm run util:is-in-sync-with-origin-main && npm run util:is-working-tree-clean && lerna version --conventional-commits --create-release github --no-git-tag-version --no-push --yes && npm run util:sync-linked-package-versions -- latest",
"prepare": "husky install",
"start": "turbo run start --log-order=stream",
"test": "turbo run test --log-order=stream",
"util:is-in-sync-with-origin-main": "[ \"$(git rev-parse --abbrev-ref HEAD)\" = \"main\" ] && [ \"$(git rev-parse main)\" = \"$(git rev-parse origin/main)\" ]",
"util:is-in-sync-with-origin-rc": "[ \"$(git rev-parse --abbrev-ref HEAD)\" = \"rc\" ] && [ \"$(git rev-parse rc)\" = \"$(git rev-parse origin/rc)\" ]",
"util:is-next-deployable": "tsx support/isNextDeployable.ts",
"util:is-working-tree-clean": "[ -z \"$(git status --porcelain=v1)\" ]",
"util:push-tags": "git push origin main --follow-tags",
"util:remove-next-changelog-entries": "tsx support/removeNextChangelogEntries.ts",
"util:sync-linked-package-versions": "tsx support/syncLinkedPackageVersions.ts"
},
"devDependencies": {
"@cspell/eslint-plugin": "8.7.0",
"@esri/calcite-base": "1.2.0",
"@esri/calcite-colors": "6.1.0",
"@prettier/sync": "0.5.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@storybook/addon-a11y": "8.0.6",
"@storybook/addon-docs": "8.0.6",
"@storybook/addon-interactions": "8.0.6",
"@storybook/addon-mdx-gfm": "8.0.6",
"@storybook/addon-themes": "8.0.6",
"@storybook/addon-webpack5-compiler-babel": "3.0.3",
"@storybook/blocks": "8.0.6",
"@storybook/html": "8.0.6",
"@storybook/html-webpack5": "8.0.6",
"@storybook/manager-api": "8.0.6",
"@storybook/preview-api": "8.0.6",
"@storybook/storybook-deployer": "2.8.16",
"@tokens-studio/sd-transforms": "0.12.2",
"@types/dedent": "0.7.2",
"@types/eslint": "8.56.9",
"@types/estree": "1.0.5",
"@types/jest": "29.5.12",
"@types/jest-axe": "3.5.9",
"@types/lodash-es": "4.17.12",
"@types/node": "^20.12.7",
"@types/prettier": "2.7.3",
"@types/react": "^16.7.6",
"@types/react-dom": "^16.0.9",
"@types/semver": "7.5.8",
"@types/shell-quote": "1.7.5",
"@types/sortablejs": "1.15.7",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"@whitespace/storybook-addon-html": "6.0.4",
"autoprefixer": "10.4.19",
"axe-core": "4.9.0",
"babel-loader": "9.1.3",
"change-case": "4.1.2",
"cheerio": "1.0.0-rc.12",
"chokidar": "3.6.0",
"chromatic": "11.3.0",
"concurrently": "8.2.2",
"conventional-changelog-conventionalcommits": "7.0.2",
"cpy": "11.0.1",
"cpy-cli": "5.0.0",
"dedent": "1.5.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.2.0",
"eslint-plugin-jsdoc": "48.2.3",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-unicorn": "52.0.0",
"globby": "14.0.1",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-axe": "8.0.0",
"jest-cli": "29.7.0",
"lerna": "8.1.2",
"lint-staged": "15.2.2",
"markdownlint-cli": "0.39.0",
"postcss": "8.4.38",
"prettier": "3.2.5",
"puppeteer": "21.5.0",
"quicktype-core": "23.0.116",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "5.0.5",
"rollup": "4.14.2",
"semver": "7.6.0",
"shell-quote": "1.8.1",
"storybook": "8.0.6",
"storybook-addon-rtl": "1.0.0",
"style-dictionary": "3.9.2",
"stylelint": "15.11.0",
"stylelint-config-recommended-scss": "12.0.0",
"stylelint-use-logical-spec": "5.0.1",
"tailwindcss": "3.4.3",
"ts-jest": "29.1.2",
"tsx": "4.7.2",
"turbo": "1.13.2",
"type-fest": "4.15.0",
"typescript": "5.4.4",
"updtr": "4.0.0",
"workbox-build": "7.0.0"
},
"license": "SEE LICENSE.md",
"overrides": {
"@jest/transform": "29.7.0"
},
"packageManager": "[email protected]",
"volta": {
"node": "20.12.1"
},
"dependencies": {
"@storybook/test": "8.0.6",
"patch-package": "8.0.0"
}
}