forked from haydenbr/new-years-resolutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.86 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
82
83
84
85
86
87
88
{
"name": "new-years-resolutions",
"description": "Plan and keep track of your New Years Resolutions",
"author": "Unboxed Technology",
"version": "2.2.8",
"homepage": "http://unboxedtechnology.com/",
"private": false,
"license": "MIT",
"repository": "bitbucket:unboxedtech/new-years-resolutions",
"dockerHubRepository": "unboxedtechnology/new-years-resolutions",
"scripts": {
"start": "docker-compose up new-years-dev",
"build": "yarn task yarn build:browser",
"build:browser": "ionic-app-scripts build --aot --minifyjs --minifycss --optimizejs --prod --enableLint false",
"bump": "./scripts/bump.js",
"commit-latest": "docker container commit new-years-task unboxedtechnology/new-years-resolutions:latest",
"dep:add": "yarn task yarn add",
"dep:rm": "yarn task yarn rm",
"docker-build": "docker build -t $(./scripts/current-tag.js) .",
"docker-push": "docker push $(./scripts/current-tag.js)",
"major": "yarn bump major",
"minor": "yarn bump minor",
"patch": "yarn bump patch",
"postbuild:browser": "./scripts/cache-busting.js",
"postcommit-latest": "yarn task ./scripts/docker-compose-latest.js",
"postdep:add": "yarn commit-latest",
"postdep:rm": "yarn commit-latest",
"postdocker-build": "yarn docker-push",
"precommit": "pretty-quick --staged",
"pretask": "docker container rm -v new-years-task || true",
"serve": "ionic-app-scripts serve --consolelogs",
"task": "docker-compose run --name new-years-task --no-deps new-years-task"
},
"config": {
"ionic_webpack": "./webpack/webpack.config.js"
},
"dependencies": {
"@angular/common": "5.0.5",
"@angular/compiler": "5.0.5",
"@angular/compiler-cli": "5.0.5",
"@angular/core": "5.0.5",
"@angular/forms": "5.0.5",
"@angular/http": "5.0.5",
"@angular/platform-browser": "5.0.5",
"@angular/platform-browser-dynamic": "5.0.5",
"@ionic-native/core": "4.5.3",
"@ionic-native/device": "4.5.3",
"@ionic-native/splash-screen": "4.5.3",
"@ionic-native/status-bar": "4.5.3",
"@ionic/storage": "2.1.3",
"@ngrx/effects": "5.0.1",
"@ngrx/store": "5.0.0",
"@ngrx/store-devtools": "5.0.1",
"ionic-angular": "3.9.2",
"ionicons": "3.0.0",
"lodash": "^4.17.2",
"reselect": "^2.5.4",
"rxjs": "5.5.2",
"uuid": "^3.0.1",
"zone.js": "^0.8.18"
},
"devDependencies": {
"@ionic/app-scripts": "3.1.8",
"chalk": "^2.3.0",
"cheerio": "^1.0.0-rc.2",
"cordova": "8.0.0",
"husky": "^0.14.3",
"js-yaml": "^3.10.0",
"prettier": "^1.10.2",
"pretty-quick": "^1.2.3",
"rev-hash": "^2.0.0",
"typescript": "2.4.2",
"webpack": "3.8.1",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-bundle-size-analyzer": "^2.7.0",
"webpack-merge": "^4.1.1",
"xml2js": "^0.4.19",
"yn": "^2.0.0"
},
"cordovaPlugins": [
"cordova-plugin-whitelist",
"cordova-plugin-statusbar",
"cordova-plugin-console",
"cordova-plugin-device",
"cordova-plugin-splashscreen",
"ionic-plugin-keyboard"
]
}