-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
110 lines (110 loc) · 4.25 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
{
"name": "sg-orbit",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/workleap/sg-orbit.git",
"license": "Apache-2.0",
"workspaces": {
"packages": [
"packages/*",
"tooling/*"
]
},
"scripts": {
"start": "run-s start:*",
"start:pkg": "lerna run start --parallel",
"start:sb": "start-storybook -p 9009",
"start-sb-chroma": "cross-env STORYBOOK_IS_CHROMATIC=true yarn start:sb",
"start-sb-docs": "cross-env STORYBOOK_IS_DOCS_SITE=true start-storybook -p 9010 --docs",
"start-sb-no-chroma": "cross-env STORYBOOK_INCLUDE_CHROMATIC=false yarn start:sb",
"build": "lerna run build",
"build-sb": "build-storybook -o storybook-static/sb",
"build-sb-chroma": "cross-env STORYBOOK_IS_CHROMATIC=true build-storybook -o storybook-static/chromatic",
"build-sb-docs": "cross-env STORYBOOK_IS_DOCS_SITE=true build-storybook -o storybook-static/docs --docs",
"build-netlify-sb": "yarn && yarn build && yarn build-sb",
"build-netlify-docs": "yarn && yarn build && yarn build-sb-docs",
"clean": "run-p -c clean:*",
"clean:pkg": "lerna run clean --parallel",
"clean:sb": "rimraf storybook-static",
"reset": "yarn clean && rimraf node_modules yarn.lock",
"lint": "run-s lint:* typecheck",
"lint:eslint": "eslint --ext .js,.jsx,.ts,.tsx,.mdx . --cache --cache-location node_modules/.cache/.eslintcache",
"lint:style": "stylelint \"**/*.css\" --allow-empty-input --cache",
"lint-ci-eslint": "eslint --ext .js,.jsx,.ts,.tsx,.mdx . --max-warnings=0",
"lint-ci-style": "stylelint \"**/*.css\" --allow-empty-input",
"typecheck": "tsc",
"test": "jest",
"new-version": "changeset",
"publish-pkg": "changeset publish",
"publish-pkg-alpha": "lerna publish --allow-branch feature/* --force-publish=* --dist-tag=alpha --no-push --exact --loglevel verbose",
"release-alpha": "cross-env NODE_ENV=production run-s build publish-pkg-alpha",
"release": "cross-env NODE_ENV=production run-s build publish-pkg",
"diff": "lerna changed && lerna diff",
"deploy-netlify-sb-preview": "yarn build && yarn build-sb && netlify deploy --dir=storybook-static/sb --site=4b420380-aed1-4dc6-b002-6efe7b413025 --open",
"serve-sb": "serve storybook-static/sb",
"serve-sb-chroma": "serve storybook-static/chromatic",
"serve-sb-docs": "serve storybook-static/docs",
"chromatic": "chromatic -b=build-sb-chroma --debug"
},
"devDependencies": {
"@changesets/cli": "2.26.0",
"@sharegate/eslint-plugin": "3.1.0",
"@sharegate/stylelint-plugin": "1.0.1",
"@sharegate/typescript-config": "1.1.1",
"@storybook/addon-a11y": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/react": "6.5.16",
"@storybook/testing-library": "0.0.13",
"@storybook/testing-react": "1.3.0",
"@svgr/core": "6.5.1",
"@testing-library/dom": "8.20.0",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.0.0",
"@types/jest": "29.4.3",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-is": "17.0.3",
"@types/resize-observer-browser": "0.1.7",
"@typescript-eslint/parser": "5.9.1",
"ts-jest": "29.0.5",
"browserslist": "4.21.5",
"chalk": "4.1.2",
"chromatic": "6.3.4",
"cross-env": "7.0.3",
"csstype": "*",
"copyfiles": "2.4.1",
"date-fns": "2.29.3",
"eslint": "8.36.0",
"eslint-plugin-sort-destructure-keys": "1.5.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"formik": "2.2.9",
"identity-obj-proxy": "3.0.0",
"jarle": "1.3.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"lerna": "6.5.1",
"meow": "9.0.0",
"netlify-cli": "8.6.18",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"prism-react-renderer": "1.2.1",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"resize-observer-polyfill": "1.5.1",
"rimraf": "4.4.0",
"serve": "14.2.0",
"shelljs": "0.8.5",
"stylelint": "14.16.1",
"svgo": "3.0.2",
"type-fest": "2.9.0",
"typescript": "4.5.4",
"webpack-filter-warnings-plugin": "1.2.1"
},
"engines": {
"node": ">=16"
}
}