-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
76 lines (76 loc) · 2.27 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
{
"name": "react-banner",
"version": "1.0.3",
"description": "A flexible banner component.",
"main": "dist/react-banner.min.js",
"scripts": {
"start": "webpack-dev-server --config webpack.docs.js --env.dev",
"watch": "webpack --watch --config webpack.dist.js",
"build": "npm run build:lib && npm run build:docs",
"build:lib": "webpack --config webpack.dist.js",
"build:docs": "webpack --config webpack.docs.js",
"release": "standard-version",
"test": "npm prune && npm install && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skipjack/react-banner.git"
},
"keywords": [
"react",
"component",
"react-banner",
"banner"
],
"author": "Greg Venech",
"license": "MIT",
"bugs": {
"url": "https://github.com/skipjack/react-banner/issues"
},
"homepage": "https://github.com/skipjack/react-banner#readme",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"prop-types": "^15.5.8"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"algoliasearch": "^3.35.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^2.1.1",
"docsearch.js": "^2.6.3",
"eslint": "^5.16.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-react": "^7.19.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"json-loader": "^0.5.4",
"mini-css-extract-plugin": "^0.7.0",
"prop-types": "^15.7.2",
"raw-loader": "^2.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-headroom": "^2.2.8",
"react-hot-loader": "^3.0.0",
"react-pirate": "^1.3.0",
"react-router-dom": "^5.1.2",
"react-sidebar": "^3.0.2",
"remark-highlight.js": "^5.2.0",
"remark-loader": "^0.3.0",
"standard-version": "^8.0.1",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.4.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {}
}