-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
82 lines (82 loc) · 2.63 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
{
"private": true,
"name": "shared-ui-react",
"license": "GPL-3.0",
"workspaces": [
"packages/*"
],
"dependencies": {
"@octokit/core": "^3.4.0",
"@wpmudev/shared-ui": "^2.12.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.7",
"typescript": "^4.2.4",
"webpack": "^5.33.2"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@storybook/addon-a11y": "^6.4.22",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/react": "^6.4.22",
"@wordpress/eslint-plugin": "^12.2.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"chromatic": "^6.5.4",
"css-loader": "^5.0.1",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-storybook": "^0.5.11",
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"prettier": "2.2.1",
"react-is": "^17.0.1",
"react-test-renderer": "^17.0.1",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0"
},
"resolutions": {
"nth-check": "^2.0.1",
"glob-parent": "^6.0.2",
"trim": "^1.0.1",
"postcss": "^8.4.13",
"autoprefixer": "^10.4.7"
},
"scripts": {
"build": "npx lerna run build",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006 --no-dll --no-manager-cache",
"build-storybook": "build-storybook --no-dll",
"deploy": "yarn run build-storybook && gh-pages -d storybook-static -b gh-pages -m \"🚀 Update showcase with latest changes.\"",
"chromatic": "yarn run build-storybook && npx chromatic --project-token=8qcmh09rb9f --storybook-build-dir storybook-static",
"lint": "yarn run eslint packages/**/lib/*.js",
"init-logs": "node_modules/.bin/lerna-changelog",
"changelog": "lerna-changelog"
},
"changelog": {
"repo": "wpmudev/shared-ui-react",
"labels": {
"breaking": "💥 Breaking Changes",
"new": "✨ New Features",
"improvement": "🚀 Improvements",
"accessibility": "♿️ Accessibility",
"bug": "🐛 Bug Fixes",
"documentation": "📝 Documentation",
"internal": "🏠 Internal"
},
"cacheDir": ".changelog"
}
}