-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 2.14 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/preset-react": "^7.12.13",
"@geometricpanda/storybook-addon-badges": "^0.2.1",
"@rollup/plugin-image": "^2.1.1",
"@storybook/addon-a11y": "^6.4.19",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.4.19",
"@wpmudev/sui-icons": "^1.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^8.9.0",
"eslint-plugin-react": "^7.28.0",
"gh-pages": "^3.1.0",
"lerna": "^3.22.1",
"lerna-changelog": "^1.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"storybook-mobile": "^1.0.0",
"stylelint": "^13.11.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"webpack": "^5.23.0"
},
"dependencies": {
"@octokit/core": "^3.2.5",
"@wpmudev/shared-ui": "^2.12.3"
},
"scripts": {
"build": "npx lerna run build",
"storybook": "start-storybook -p 6007",
"build-storybook": "build-storybook",
"deploy": "yarn build-storybook && gh-pages -d storybook-static -b gh-pages -m \"🚀 Update showcase with latest changes.\"",
"lint:css": "stylelint './packages/**/*.js'",
"changelog": "lerna-changelog"
},
"peerDependencies": {
"typescript": "^4.1.5"
},
"changelog": {
"repo": "wpmudev/shared-modules",
"labels": {
"new": "✨ New Features",
"improvement": "🚀 Improvements",
"bug": "🐛 Bug Fixes",
"accessibility": "♿️ Accessibility",
"documentation": "📝 Documentation",
"internal": "🏠 Internal"
},
"cacheDir": ".changelog"
}
}