-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "react-serp-preview",
"version": "1.1.0",
"description": "Visualise how your website will appear in the Google search results.",
"main": "dist/SerpPreview.js",
"author": "Koen Klaren <koen.klaren@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Mesoptier/react-serp-preview.git"
},
"keywords": [
"google",
"seo",
"serp",
"preview",
"react",
"react-component"
],
"scripts": {
"build": "babel src --out-dir dist --source-maps",
"prepack": "npm run build",
"build:demo": "webpack --config webpack.config.demo.js",
"start:demo": "webpack serve --config webpack.config.demo.js --mode=development"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.0",
"@babel/core": "^7.12.0",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.12.0",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"prettier": "^2.1.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"webpack": "^4.0.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.0.0"
}
}