forked from humanmade/authorship
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.78 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.78 KB
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
{
"name": "@humanmade/authorship",
"version": "0.3.0-alpha",
"description": "Authorship",
"private": true,
"main": "src/index.tsx",
"license": "GPL-3.0-or-later",
"scripts": {
"env:start": "wp-env start --update",
"env:stop": "wp-env stop",
"env:destroy": "wp-env destroy",
"env:status": "wp-env status",
"env:cli": "wp-env run cli wp --allow-root",
"env:bootstrap": "wp-env run cli wp --allow-root option update permalink_structure '/%postname%/'",
"env:start:ms": "wp-env start --config=.wp-env.multisite.json --update",
"env:stop:ms": "wp-env stop --config=.wp-env.multisite.json",
"env:destroy:ms": "wp-env destroy --config=.wp-env.multisite.json",
"env:status:ms": "wp-env status --config=.wp-env.multisite.json",
"env:cli:ms": "wp-env run cli --config=.wp-env.multisite.json wp --allow-root",
"env:bootstrap:ms": "sh -c \"wp-env run cli --config=.wp-env.multisite.json wp --allow-root option update permalink_structure '/%postname%/' && (wp-env run cli --config=.wp-env.multisite.json wp --allow-root site create --slug=authors --title='Authors Subsite' --email=admin@example.com || true)\"",
"lint": "concurrently -n CSS,JS -c cyan.bold,yellow.bold \"npm run lint:css\" \"npm run lint:js\"",
"lint:css": "stylelint \"src/**/*.scss\"",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx src/ tests/js/",
"playground:start": "wp-playground-cli start --path=. --wp=6.6 --php=8.3 --port=9400",
"playground:start:reset": "wp-playground-cli start --path=. --reset --wp=6.6 --php=8.3 --port=9400",
"test:js": "wp-scripts test-unit-js tests/js --runInBand",
"test:js:coverage": "wp-scripts test-unit-js tests/js --runInBand --coverage --coverageReporters=text-summary --coverageThreshold=\"{\\\"global\\\":{\\\"branches\\\":55,\\\"functions\\\":73,\\\"lines\\\":80,\\\"statements\\\":80}}\"",
"start": "wp-scripts start",
"build": "wp-scripts build",
"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"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@wordpress/editor": "^9.24.3",
"@wordpress/i18n": "^3.12.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-select": "^5.10.2"
},
"devDependencies": {
"@humanmade/eslint-config": "^1.1.3",
"@humanmade/stylelint-config": "^1.1.1",
"@wordpress/env": "^11.1.0",
"@testing-library/react": "^12.1.5",
"@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/babel-preset-default": "^8.41.0",
"@wordpress/plugins": "^2.23.0",
"@wordpress/scripts": "^24.0.0",
"@wordpress/url": "^2.19.0",
"@wp-playground/cli": "^3.1.11",
"ajv": "^8.18.0",
"babel-eslint": "^10.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": "^29.2.0",
"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",
"stylelint": "^13.8.0",
"typescript": "^4.1.3",
"version-bump-prompt": "^6.1.0",
"wp-types": "^1.2.0"
}
}