-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 3.53 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "byline-manager",
"description": "Manage an article's byline and author profiles",
"main": "client/src/index.js",
"scripts": {
"preinstall": "npx check-node-version --package",
"build": "webpack --config client/config/webpack.config.js --mode production",
"dev": "webpack --config client/config/webpack.config.js --watch --output-pathinfo --mode development",
"lint": "eslint --ext .js,.jsx . && npm run stylelint",
"lint:fix": "eslint --ext .js,.jsx --fix . && npm run stylelint:fix",
"prerelease": "npx check-node-version --package",
"release": "npx @alleyinteractive/create-release@latest",
"stylelint": "stylelint \"**/*.scss\" --allow-empty-input --config \"./client/config/stylelint.config.js\"",
"stylelint:fix": "stylelint \"**/*.scss\" --allow-empty-input --config \"./client/config/stylelint.config.js\" --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"engines": {
"node": "20",
"npm": "10"
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/client/src/mocks/styleMock.js"
},
"modulePathIgnorePatterns": [
"<rootDir>/vendor/"
]
},
"devDependencies": {
"@alleyinteractive/eslint-config": "^0.1.6",
"@alleyinteractive/stylelint-config": "^0.0.2",
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.8",
"@babel/preset-react": "^7.24.7",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"babel-plugin-module-resolver": "^5.0.2",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-import-resolver-webpack": "^0.13.10",
"eslint-webpack-plugin": "^4.2.0",
"file-loader": "6.2.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.1",
"node-libs-browser": "^2.2.1",
"postcss": "^8.4.47",
"postcss-calc": "^10.0.2",
"postcss-custom-media": "^11.0.3",
"postcss-custom-properties": "^14.0.2",
"postcss-focus": "^7.0.0",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-nested": "^6.2.0",
"sass": "^1.79.4",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"stylelint": "^16.9.0",
"stylelint-config-sass-guidelines": "^11.1.0",
"stylelint-order": "^6.0.4",
"stylelint-webpack-plugin": "^5.0.1",
"url-loader": "^4.1.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"@alleyinteractive/block-editor-tools": "^0.10.2",
"@uidotdev/usehooks": "^2.4.1",
"@wordpress/api-fetch": "^6.47.0",
"@wordpress/components": "^25.8.14",
"@wordpress/compose": "^6.19.13",
"@wordpress/data": "^9.12.13",
"@wordpress/dependency-extraction-webpack-plugin": "^5.1.0",
"@wordpress/edit-post": "^7.19.16",
"@wordpress/element": "^5.27.0",
"@wordpress/i18n": "^4.3.1",
"@wordpress/icons": "^9.33.13",
"@wordpress/plugins": "^6.10.14",
"@wordpress/url": "^3.51.0",
"array-move": "^4.0.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"classnames": "^2.5.1",
"prop-types": "^15.6.1",
"react": "^18.3.1",
"react-autocomplete": "^1.8.1",
"react-dom": "^18.3.1",
"react-hot-loader": "^4.13.1",
"react-redux": "^9.1.2",
"react-sortable-hoc": "^2.0.0",
"reduce-reducers": "^1.0.4",
"redux": "^5.0.1",
"redux-devtools-extension": "^2.13.9",
"webpack-stats-plugin": "^1.1.3"
},
"browserslist": [
"defaults",
"not IE 11"
]
}