forked from humanmade/authorship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 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
{
"name": "@humanmade/authorship",
"version": "0.2.16",
"description": "Authorship",
"private": true,
"main": "src/index.tsx",
"license": "GPL-3.0-or-later",
"scripts": {
"lint": "concurrently -n CSS,JS -c cyan.bold,yellow.bold \"npm run lint:css\" \"npm run lint:js\"",
"lint:css": "stylelint src/",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx src/",
"start": "webpack-dev-server --config=.config/webpack.config.dev.js",
"build": "webpack --config=.config/webpack.config.prod.js",
"bump:patch": "bump patch --commit 'The v%s release' package.json package-lock.json README.md plugin.php",
"bump:minor": "bump minor --commit 'The v%s release' package.json package-lock.json README.md plugin.php",
"bump:major": "bump major --commit 'The v%s release' package.json package-lock.json README.md plugin.php"
},
"dependencies": {
"@types/react-select": "^3.0.26",
"@wordpress/editor": "^9.24.3",
"@wordpress/i18n": "^3.12.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-select": "^3.1.1",
"react-sortable-hoc": "^2.0.0"
},
"devDependencies": {
"@humanmade/eslint-config": "^1.1.3",
"@humanmade/stylelint-config": "^1.1.1",
"@humanmade/webpack-helpers": "^0.9.0",
"@types/classnames": "^2.2.11",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/wordpress__plugins": "^2.3.7",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"@wordpress/api-fetch": "^3.20.0",
"@wordpress/edit-post": "^3.25.4",
"@wordpress/plugins": "^2.23.0",
"@wordpress/url": "^2.19.0",
"babel-eslint": "^10.0.0",
"bell-on-bundler-error-plugin": "^2.0.0",
"classnames": "^2.2",
"concurrently": "^5.3.0",
"eslint": "^7.17.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.13",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"sass": "^1.29.0",
"source-map-loader": "^0.2.4",
"stylelint": "^13.8.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"version-bump-prompt": "^6.1.0",
"webpack": "^4",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"wp-types": "^1.2.0"
}
}