forked from as-ideas/add-to-homescreen-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.82 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
{
"name": "@mahpooya/add-to-homescreen-react",
"version": "1.0.11",
"description": "A React component providing add-to-home-screen functionality for progressive webapps on different platforms and browsers (Fork for update dependencies and webpack)",
"main": "build/AddToHomeScreen.js",
"license": "LGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/mahpooya/add-to-homescreen-react.git"
},
"keywords": [
"react",
"homescreen",
"pwa",
"ios",
"android",
"desktop"
],
"author": "Axel Springer Ideas Engineering GmbH",
"contributors": [
"Mahpooya Damavand <[email protected]>"
],
"bugs": {
"url": "https://github.com/as-ideas/add-to-homescreen-react/issues"
},
"homepage": "https://github.com/mahpooya/add-to-homescreen-react/blob/master/README.md",
"scripts": {
"build": "webpack --mode production",
"build:example-basic-integration": "webpack --mode production --config=examples/basic-integration/webpack.config.js",
"build:example-guidance-images": "webpack --mode production --config=examples/guidance-images/webpack.config.js",
"build:example-modified-behavior": "webpack --mode production --config=examples/modified-behavior/webpack.config.js",
"build:example-modified-styling": "webpack --mode production --config=examples/modified-styling/webpack.config.js",
"build:live-demo": "webpack --mode production --config=live-demo/webpack.config.js",
"start:example-basic-integration": "webpack-dev-server --config=examples/basic-integration/webpack.config.js",
"start:example-guidance-images": "webpack-dev-server --config=examples/guidance-images/webpack.config.js",
"start:example-modified-behavior": "webpack-dev-server --config=examples/modified-behavior/webpack.config.js",
"start:example-modified-styling": "webpack-dev-server --config=examples/modified-styling/webpack.config.js",
"predeploy:live-demo": "npm run build:live-demo",
"deploy:live-demo": "gh-pages -d live-demo/dist"
},
"peerDependencies": {
"react": "^0.14 || ^15 || ^16 || ^17 || ^18",
"react-dom": "^0.14 || ^15 || ^16 || ^17 || ^18"
},
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/preset-env": "7.23.2",
"@babel/preset-react": "7.22.15",
"babel-loader": "9.1.3",
"babel-plugin-macros": "3.1.0",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.8.1",
"css-mediaquery": "0.1.2",
"file-loader": "6.2.0",
"gh-pages": "6.0.0",
"html-webpack-plugin": "5.5.3",
"node-sass": "9.0.0",
"prop-types": "15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass-loader": "13.3.2",
"style-loader": "3.3.3",
"webpack": "5.89.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1",
"webpack-node-externals": "3.0.0"
},
"directories": {
"example": "examples"
}
}