-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.71 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
{
"name": "com.dgerrard.crwb",
"displayName": "Cordova React Webpack Boilerplate",
"version": "1.0.0",
"description": "A basic boilerplate for creating Cordova applications, using React, Webpack and TypeScript",
"scripts": {
"build": "webpack --config webpack.config.js",
"clean": "rimraf ./www/js/main.js & rimraf ./www/js/main.js.map",
"test": "echo \"Error: no test specified\" && exit 1",
"start:android": "npm run clean && npm run build && cordova run android",
"postinstall": "cordova platform add android && cordova plugin add cordova-plugin-device"
},
"keywords": [
"cordova",
"react",
"typescript",
"webpack"
],
"author": "Dave Gerrard",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/react": "^16.0.18",
"@types/react-dom": "^16.0.2",
"awesome-typescript-loader": "^3.2.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-node": "^6.1.1",
"babel-preset-react": "^6.24.1",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.2",
"standard-loader": "^6.0.1",
"ts-loader": "^3.5.0",
"ts-node": "^8.10.1",
"tslint": "^5.8.0",
"tslint-config-standard": "^6.0.1",
"tslint-loader": "^3.5.3",
"typescript": "^2.5.3",
"webpack": "^3.8.1"
},
"dependencies": {
"cordova-android": "^6.3.0",
"cordova-plugin-device": "^1.1.6",
"cordova-plugin-whitelist": "^1.3.2",
"device": "^0.3.8",
"mocha": "^7.1.2",
"react": "^16.0.0",
"react-dom": "^16.0.1"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-device": {}
},
"platforms": [
"android"
]
}
}