-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.38 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
{
"name": "@wpmudev/sui-react",
"description": "Reusable building blocks of our design system based on React.",
"version": "0.0.0",
"license": "GPL-3.0",
"keywords": [
"incsub",
"wpmudev",
"shared-ui",
"react",
"components",
"containers"
],
"author": "WPMU DEV (https://wpmudev.com)",
"contributors": [
{
"name": "Leighton Sapir",
"email": "[email protected]",
"url": "https://iamleigh.com"
}
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wpmudev/sui-react.git"
},
"scripts": {
"format-files": "clear && yarn prettier --write .",
"build-css": "clear && lerna run build",
"storybook": "start-storybook -p 6007",
"build-storybook": "build-storybook",
"changelog": "npx lerna-changelog"
},
"bugs": {
"url": "https://incsub.atlassian.net/browse/SUI"
},
"homepage": "https://github.com/wpmudev/sui-react#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.18.9",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^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": "^20.0.2",
"@wpmudev/storybook": "^0.0.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"dedent": "^0.7.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.9.1"
},
"resolutions": {
"glob-parent": "^6.0.1",
"parse-path": "^5.0.0",
"parse-url": "^8.1.0",
"trim": "^0.0.3",
"trim-newlines": "^3.0.1"
},
"changelog": {
"repo": "wpmudev/sui-react",
"labels": {
"breaking": "💥 Breaking Change",
"new": "✨ New Feature",
"improvement": "🚀 Improvement",
"bug": "🐛 Bug Fix",
"accessibility": "♿️ Accessibility",
"documentation": "📝 Documentation",
"internal": "🏠 Internal"
}
}
}