forked from Yoast/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.28 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.28 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
{
"name": "@yoast/example-component-app",
"version": "1.0.28",
"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\" \"webpack-dev-server --mode=development\"",
"test": "jest"
},
"dependencies": {
"@wordpress/i18n": "1.2.3",
"@yoast/algolia-search-box": "^1.4.0",
"@yoast/analysis-report": "^0.5.0",
"@yoast/components": "^0.5.0",
"@yoast/configuration-wizard": "^1.4.0",
"@yoast/helpers": "^0.4.0-rc.2",
"@yoast/search-metadata-previews": "^1.5.0",
"@yoast/style-guide": "^0.4.0-rc.1",
"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.2.0",
"yoastseo": "^1.56.0"
},
"devDependencies": {
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^7.1.1",
"babel-plugin-styled-components": "^1.5.1",
"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",
"react-hot-loader": "^4.0.0-beta.17",
"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": "^4.29.0"
},
"peerDependencies": {
"material-ui": "^0.18.6",
"react": "16.3.0",
"react-dom": "16.3.0",
"react-redux": "6.0.1",
"redux": "4.0.1"
},
"jest": {
"testRegex": ".*Test.js$",
"testEnvironment": "node",
"transform": {
"\\.jsx?$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!yoastseo|lodash-es).+\\.js$"
],
"moduleNameMapper": {
"\\.css$": "<rootDir>/tests/__mocks__/styleMock.js"
}
},
"browserify": {
"transform": [
"babelify"
]
}
}