This repository was archived by the owner on Mar 2, 2021. It is now read-only.
forked from holloway/mahara-mobile
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.94 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.94 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "mahara-mobile",
"version": "3.0.0",
"description": "Mahara Mobile",
"scripts": {
"init-cordova": "mkdir -p www && ./node_modules/.bin/cordova prepare",
"postinstall": "npm run init-cordova",
"build-browser": "gulp && ./node_modules/.bin/cordova build browser",
"launch-browser": "chromium-browser --disable-web-security --user-data-dir=/tmp/cordova/ --app=http://localhost:8000/browser/www/index.html &",
"build-ios": "./node_modules/.bin/gulp && ./node_modules/.bin/cordova build ios --release --buildConfig ./cordova.json",
"android": "gulp && cordova run android",
"prestart": "gulp && cordova build browser && npm run launch-browser",
"start": "cordova serve 8000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holloway/mahara-mobile.git"
},
"author": "Matthew Holloway <matthew@holloway.co.nz>",
"license": "SEE LICENSE IN 'LICENSE'",
"bugs": {
"url": "https://github.com/holloway/mahara-mobile/issues"
},
"homepage": "https://github.com/holloway/mahara-mobile",
"dependencies": {
"android-versions": "^1.3.0",
"autoprefixer": "^9.5.0",
"browserify": "^16.2.3",
"cordova": "^9.0.0",
"cordova-android": "^8.0.0",
"cordova-browser": "^6.0.0",
"cordova-ios": "^5.0.0",
"cordova-plugin-camera": "~4.0.3",
"cordova-plugin-device": "~2.0.2",
"cordova-plugin-file": "6.0.1",
"cordova-plugin-globalization": "^1.11.0",
"cordova-plugin-inappbrowser": "3.0.0",
"cordova-plugin-media": "~5.0.2",
"cordova-plugin-media-capture": "^3.0.2",
"cordova-plugin-statusbar": "^2.4.2",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-serve": "~3.0.0",
"glob": "^7.1.3",
"grapnel": "~0.6.2",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-concat": "~2.6.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1",
"gulp-util": "~3.0.7",
"jquery": "^3.3.1",
"json5": "^2.1.0",
"postcss-import": "^12.0.1",
"postcss-mixins": "^6.2.1",
"postcss-nested": "^4.1.1",
"postcss-simple-vars": "^5.0.2",
"prop-types": "^15.7.2",
"react": "~15.6.2",
"react-dom": "~15.6.2",
"react-pull-to-refresh": "^1.1.2",
"react-redux": "~4.4.5",
"react-select": "^1.0.0-rc.10",
"react-select2": "https://github.com/agwells/react-select2/releases/download/v4.0.2-beta3/react-select2-4.0.1.tgz",
"redux": "~3.6.0",
"vinyl-buffer": "~1.0.0",
"vinyl-source-stream": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babelify": "^10.0.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0"
},
"cordova": {
"platforms": [
"browser",
"ios",
"android"
],
"plugins": {
"cordova-plugin-camera": {},
"cordova-plugin-device": {},
"cordova-plugin-file": {},
"cordova-plugin-globalization": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-media": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-media-capture": {}
}
}
}