forked from Viglino/parcel-cordova
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.98 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "parcel-cordova-react",
"version": "1.0.0",
"description": "Utilisation de  [Cordova](https://cordova.apache.org/) avec le bundler  [ParcelJS](https://parceljs.org/).",
"scripts": {
"start": "parcel index.html --dist-dir ./.dist",
"simulate-ios": "",
"simulate-android": "",
"init": "node ./scripts/init.js",
"lint": "eslint --fix src/ || exit 0",
"build-dev": "parcel build index.html --no-minify --no-source-maps --no-content-hash --public-url . --dist-dir ./www index.html",
"build": "parcel build index.html --no-source-maps --no-content-hash --public-url . --dist-dir ./www index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vicfou-dev/parcel-cordova-react.git"
},
"author": "Victor Morel",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vicfou-dev/parcel-cordova-react/issues"
},
"homepage": "https://github.com/Vicfou-dev/parcel-cordova-react#readme",
"dependencies": {
"@parcel/transformer-svg-react": "^2.8.3",
"@swc/helpers": "^0.4.14",
"cordova": "^11.1.0",
"parcel": "^2.7.0",
"parcel-reporter-static-files-copy": "^1.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"regenerator-runtime": "^0.13.11",
"rimraf": "^4.1.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"cordova-android": "^10.1.2",
"cordova-plugin-device": "^2.1.0",
"cordova-plugin-whitelist": "^1.3.5",
"process": "^0.11.10"
},
"staticFiles": {
"staticPath": "src/assets"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-device": {}
},
"platforms": [
"android"
]
}
}