forked from s-yadav/react-meta-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.22 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
{
"name": "react-meta-tags",
"description": "Handle document meta/head tags in isomorphic react with ease.",
"version": "1.0.1",
"main": "lib/index.js",
"author": "Sudhanshu Yadav",
"license": "MIT",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/s-yadav/react-meta-tags"
},
"bugs": {
"mail": "sudhanshuyadav2@gmail.com",
"url": "https://github.com/s-yadav/react-meta-tags/issues"
},
"keywords": [
"react-component",
"tags",
"head",
"meta",
"title",
"react",
"base",
"react-meta-tags"
],
"scripts": {
"start": "cross-env npm run start-dev | nodemon example.js",
"start-dev": "cross-env webpack-dev-server --content-base example/ --config webpack.dev.config.js --watch-poll --progress --inline --hot",
"bundle": "cross-env NODE_ENV=production rollup -c rollup.config.js && npm run compile",
"compile": "cross-env babel src --out-dir lib"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-add-module-exports": "^1.0.0",
"classnames": "^2.2.3",
"cross-env": "^3.1.4",
"eslint": "^5.6.0",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"nodemon": "^1.12.1",
"prettier": "^2.2.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-router": "3",
"react-transform-hmr": "^1.0.4",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-license": "^0.7.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^5.0.2",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7"
},
"peerDependencies": {
"react": "^16.6.0",
"react-dom": "^16.6.0"
},
"dependencies": {}
}