-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
85 lines (85 loc) · 2.45 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
{
"name": "react-structured-data",
"version": "0.0.14",
"description": "Declarative JSON-LD Structured Data for ReactJS Apps",
"author": "Ben Taylor <benlt105@gmail.com>",
"private": false,
"homepage": "https://bentaylor2.github.io/react-structured-data/",
"license": "MIT",
"keywords": [
"react",
"React",
"react-jsonld",
"json-ld",
"JSON-LD",
"jsonld",
"JSONLD",
"schema.org",
"schema",
"structured data",
"seo",
"react-component"
],
"repository": {
"type": "git",
"url": "https://github.com/bentaylor2/react-structured-data.git"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"devDependencies": {
"autoprefixer": "7.1.6",
"babel-cli": "^6.14.0",
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "6.11.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-minify": "^0.4.3",
"babel-preset-react": "6.24.1",
"babel-preset-react-app": "^3.1.0",
"babel-preset-stage-2": "^6.13.0",
"babel-runtime": "6.26.0",
"css-loader": "0.28.7",
"eslint": "^4.18.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.7.2",
"postcss-flexbugs-fixes": "3.2.0",
"postcss-loader": "2.0.8",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dev-utils": "^4.2.1",
"react-dom": "^16.2.0",
"react-structured-data": "^0.0.8",
"sass-loader": "^6.0.6",
"style-loader": "0.19.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.6.0",
"webpack-cli": "^3.0.2",
"webpack-dev-server": "^3.1.4"
},
"peerDependencies": {
"react": "^16.2.0"
},
"scripts": {
"start": "BABEL_ENV=development webpack-dev-server --mode development --open --hot",
"build": "BABEL_ENV=production babel src/core --plugins transform-object-assign,transform-class-properties,transform-es2015-modules-commonjs --presets babel-preset-stage-2,babel-preset-react-app --out-dir dist"
},
"babel": {
"presets": [
"react-app"
],
"plugins": [
"babel-plugin-syntax-trailing-function-commas",
"babel-plugin-transform-class-properties",
"babel-plugin-transform-object-rest-spread",
"babel-plugin-transform-react-constant-elements"
]
},
"eslintConfig": {
"extends": "react-app"
},
"main": "./dist"
}