This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.34 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
{
"private": true,
"name": "sui-docs",
"license": "GPL-3.0",
"keywords": [
"incsub",
"wpmudev",
"shared-ui",
"documentation"
],
"author": "WPMU DEV (https://wpmudev.com)",
"contributors": [
{
"name": "Leighton Sapir",
"email": "[email protected]",
"url": "https://iamleigh.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/wpmudev/sui-docs.git"
},
"workspaces": [
"./packages/*",
"./storybook/*",
"./packages/sui-css/packages/*",
"./packages/sui-icons/packages/*",
"./packages/sui-react/packages/*"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.18.9",
"@storybook/addon-a11y": "^6.5.15",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/addon-postcss": "2.0.0",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@wordpress/stylelint-config": "^21.2.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"dedent": "^0.7.0",
"gh-pages": "^4.0.0",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"path": "^0.12.7",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"stylelint": "^14.13.0"
},
"resolutions": {
"glob-parent": "^6.0.2",
"parse-path": "^5.0.0",
"parse-url": "^8.1.0",
"trim": "^0.0.3",
"trim-newlines": "^4.0.2"
},
"scripts": {
"format-files": "clear && yarn prettier --write .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy": "yarn run build-storybook && gh-pages -d storybook-static -b gh-pages -m \"🚀 Update showcase with latest changes.\"",
"release": "lerna run release"
},
"changelog": {
"repo": "wpmudev/sui-css",
"labels": {
"breaking": "💥 Breaking Change",
"new": "✨ New Feature",
"improvement": "🚀 Improvement",
"bug": "🐛 Bug Fix",
"accessibility": "♿️ Accessibility",
"documentation": "📝 Documentation",
"internal": "🏠 Internal"
}
}
}