-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.89 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
{
"name": "sabatomap",
"version": "1.7.0-dev",
"description": "鯖江市図書館マップアプリ「さばとマップ」",
"repositry": "https://github.com/CALIL/sabatomap",
"scripts": {
"start": "npm run copy && npm run compile && npx cordova prepare && npx cordova run browser",
"compile": "browserify -g [ babelify --presets [ \"@babel/preset-env\" \"@babel/preset-react\" ] ] -g uglifyify --entry src/app.js > www/js/all.js",
"copy": "npm run compile && gulp sass && gulp copy_css && gulp copy_fonts && gulp copy_jsons",
"release": "npm run copy && npx cordova run android --release",
"build": "npm run copy && npx cordova run android",
"build_ios": "npm run copy && npx cordova run ios --target='iPhone-14'",
"build_browser": "browserify -g [ babelify --presets [ \"@babel/preset-env\" \"@babel/preset-react\" ] ] -g uglifyify --entry src/app.js > www/js/all.js"
},
"dependencies": {
"cordova-browser": "^7.0.0",
"cordova-plugin-bluetooth-status": "~1.0.4",
"cordova-plugin-network-information": "^2.0.2",
"cordova-plugin-wkwebview": "^0.6.10",
"es6-object-assign": "^1.1.0",
"geolib": "^2.0.22",
"ol": "^5.3.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-fastclick": "^3.0.2",
"superagent": "^3.8.3",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-flow-strip-types": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.4",
"autoprefixer": "^9.8.4",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"com.unarin.cordova.beacon": "github:calil/cordova-plugin-ibeacon",
"cordova": "^12.0.0",
"cordova-android": "^13.0.0",
"cordova-ios": "^7.0.0",
"cordova-lib": "^12.0.1",
"cordova-plugin-device": "^3.0.0",
"cordova-plugin-device-orientation": "github:CALIL/cordova-plugin-device-orientation",
"cordova-plugin-inappbrowser": "^5.0.0",
"cordova-plugin-splashscreen": "^6.0.2",
"core-js": "^2.6.11",
"del": "^3.0.0",
"gulp": "^5.0.0",
"gulp-concat": "^2.6.0",
"gulp-postcss": "^8.0.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^5.1.0",
"gulp-uglify": "^3.0.2",
"natives": "^1.1.6",
"postcss": "^7.0.36",
"postcss-assets": "^5.0.0",
"sass": "^1.52.2",
"uglifyify": "^5.0.2",
"vinyl-source-stream": "^1.1.0"
},
"author": "CALIL Inc.",
"license": "MIT",
"cordova": {
"platforms": [
"browser",
"ios",
"android"
],
"plugins": {
"cordova-plugin-bluetooth-status": {},
"cordova-plugin-network-information": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-splashscreen": {},
"com.unarin.cordova.beacon": {},
"cordova-plugin-device-orientation": {}
}
}
}