forked from alleyinteractive/byline-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.27 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 --color . ",
"prerelease": "npx check-node-version --package",
"release": "npx @alleyinteractive/create-release@latest",
"test": "jest",
"test:watch": "jest --watch"
},
"engines": {
"node": "16",
"npm": "8"
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/client/src/mocks/styleMock.js"
},
"modulePathIgnorePatterns": [
"<rootDir>/vendor/"
]
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.5",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^6.8.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"file-loader": "6.2.0",
"jest": "^23.1.0",
"mini-css-extract-plugin": "^2.7.6",
"node-libs-browser": "1.0.0",
"postcss": "^8.4.32",
"postcss-calc": "^9.0.1",
"postcss-custom-media": "^10.0.2",
"postcss-custom-properties": "^13.3.4",
"postcss-focus": "^7.0.0",
"postcss-import": "^16.0.0",
"postcss-loader": "^7.3.4",
"postcss-nested": "^6.0.1",
"postcss-units": "^1.2.1",
"sass": "^1.66.1",
"sass-loader": "^13.3.3",
"style-loader": "^3.3.3",
"stylelint": "^15.6.2",
"stylelint-order": "^6.0.4",
"stylelint-webpack-plugin": "^4.1.1",
"url-loader": "4.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@uidotdev/usehooks": "^2.4.1",
"@wordpress/components": "^19.4.0",
"@wordpress/compose": "^5.1.1",
"@wordpress/data": "^6.2.1",
"@wordpress/dependency-extraction-webpack-plugin": "^3.3.1",
"@wordpress/edit-post": "^6.0.0",
"@wordpress/i18n": "^4.3.1",
"@wordpress/icons": "^6.3.0",
"@wordpress/plugins": "^4.1.1",
"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.2.0",
"react-autocomplete": "^1.8.1",
"react-dom": "^18.2.0",
"react-hot-loader": "^4.13.1",
"react-redux": "^9.0.4",
"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": [
"> 0.5% in US",
"ie > 10"
]
}