-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
{
"name": "react-wp-gql",
"version": "0.7.3",
"description": "WordPress Rendering and Routing for WP-GraphQL",
"author": "jonshipman",
"license": "Apache",
"repository": {
"type": "git",
"url": "git+https://github.com/jonshipman/react-wp-gql.git"
},
"files": [
"src/scss",
"dist"
],
"keywords": [
"wp-graphql",
"wordpress",
"react"
],
"main": "dist/react-wordpress.min.js",
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack --config webpack.prod.js",
"prepare": "webpack --config webpack.prod.js",
"precommit": "prettier --write \"src/**/*.{js,jsx,json,css,scss}\""
},
"peerDependencies": {
"@apollo/client": "^3.2.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@svgr/webpack": "^5.4.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^6.0.3",
"extract-text-webpack-plugin": "4.0.0-alpha.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.0.0",
"husky": "^0.14.3",
"prettier": "^2.0.4",
"react-syntax-highlighter": "^12.2.1",
"url-loader": "^4.1.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.4.0"
},
"dependencies": {
"react-helmet": "^6.1.0"
}
}