This repository was archived by the owner on Oct 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
79 lines (79 loc) · 2.26 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
{
"name": "@yoast/example-component-app",
"version": "1.9.0",
"description": "This app demonstrates the possibilites of our components",
"main": "index.js",
"author": "Yoast",
"license": "GPL",
"private": true,
"scripts": {
"start": "concurrently --kill-others \"stubby -d stubby/endpoints.yaml -k privatekey.pem -c certificate.pem\" \"webpack-dev-server --mode=development\"",
"test": "jest"
},
"dependencies": {
"@wordpress/i18n": "1.2.3",
"@yoast/analysis-report": "^1.21.0",
"@yoast/components": "^2.19.0",
"@yoast/configuration-wizard": "^2.22.0",
"@yoast/helpers": "^0.16.0",
"@yoast/search-metadata-previews": "^2.24.0",
"@yoast/style-guide": "^0.13.0",
"babel-polyfill": "^6.23.0",
"lodash": "4.17.11",
"lodash-es": "^4.17.11",
"prop-types": "15.7.2",
"react-tap-event-plugin": "^3.0.3",
"react-test-renderer": "^16.8.6",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"styled-components": "^4.3.2",
"yoastseo": "^1.91.0"
},
"devDependencies": {
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^7.1.1",
"babel-plugin-styled-components": "^1.10.6",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"concurrently": "^3.5.0",
"css-loader": "^2.1.1",
"draft-js-mention-plugin": "^3.0.4",
"redux-devtools": "3.5.0",
"sass-loader": "7.1.0",
"stubby": "^0.3.1",
"style-loader": "^0.23.1",
"webpack": "4.19.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "3.1.14",
"yoast-components": "^5.24.0"
},
"peerDependencies": {
"material-ui": "^0.18.6",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "6.0.1",
"redux": "4.0.1"
},
"jest": {
"testRegex": ".*Test.js$",
"testEnvironment": "jsdom",
"testURL": "http://localhost",
"transform": {
"\\.jsx?$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!yoastseo|lodash-es).+\\.js$"
],
"moduleNameMapper": {
"\\.css$": "<rootDir>/tests/__mocks__/styleMock.js"
}
},
"browserify": {
"transform": [
"babelify"
]
}
}