This repository has been archived by the owner on Jun 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (120 loc) · 3.7 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "ionic-hello-world",
"author": "Ionic Framework",
"homepage": "http://ionicframework.com/",
"private": true,
"scripts": {
"clean": "ionic-app-scripts clean",
"build": "ionic-app-scripts build",
"ionic:build": "ionic-app-scripts build",
"ionic:serve": "ionic-app-scripts serve",
"webapp": "ng serve",
"serverclean": "rimraf build",
"prebuild": "npm run clean",
"server": "nodemon -r dotenv/config --delay 1500ms --watch dev.env --watch ./build \"./build/server/app/app.js\" dotenv_config_path=./src/server/dev.env",
"serverbuild": "tsc --p ./tsconfig/server.json",
"prestart": "npm run build",
"serverstart": "node ./build/server/app/app.js",
"predev": "npm run clean",
"dev": "concurrently \"npm run tsc-watch\" \"npm run nodemon\"",
"prenodemon": "wait-on ./build/server/app/app.js",
"tsc-watch": "tsc -w",
"all": "concurrently --kill-others \"npm run webapp\" \"npm run nodemon\" \"ionic serve\""
},
"dependencies": {
"@angular/common": "^2.4.0",
"@angular/compiler": "^2.4.0",
"@angular/core": "^2.4.0",
"@angular/forms": "^2.4.0",
"@angular/http": "^2.4.0",
"@angular/platform-browser": "^2.4.0",
"@angular/platform-browser-dynamic": "^2.4.0",
"@angular/platform-server": "2.4.9",
"@angular/router": "~3.4.0",
"@angular/upgrade": "2.4.9",
"@ionic/storage": "2.0.0",
"@swimlane/ngx-datatable": "^7.0.0",
"angular-calendar": "0.7.3",
"angular2-datatable": "0.5.3",
"angular2-ladda": "1.1.1",
"angular2-rest-client": "^1.1.2",
"angular2-text-mask": "^6.2.0",
"angular2-toaster": "2.0.0",
"assets-webpack-plugin": "^3.5.1",
"awesome-typescript-loader": "^3.1.2",
"chart.js": "2.5.0",
"copy-webpack-plugin": "^4.0.1",
"core-js": "^2.4.1",
"dragula": "3.7.2",
"ionic-angular": "2.1.0",
"ionic-native": "2.8.0",
"ionicons": "3.0.0",
"moment": "2.17.1",
"ng2-bootstrap": "^1.3.3",
"ng2-charts": "1.5.0",
"ng2-dragula": "1.3.0",
"ng2-select": "1.2.0",
"ngc-webpack": "^1.2.0",
"rxjs": "^5.0.1",
"script-ext-html-webpack-plugin": "^1.7.1",
"sw-toolbox": "3.6.0",
"ts-helpers": "^1.1.1",
"webpack-merge": "^4.0.0",
"zone.js": "^0.7.2",
"body-parser": "1.15.2",
"express": "4.14.0",
"morgan": "1.7.0",
"serialize-error": "2.0.0",
"validate.js": "0.10.0",
"winston": "2.2.0"
},
"devDependencies": {
"@angular/cli": "^1.0.0-rc.1",
"@ionic/app-scripts": "1.1.4",
"codelyzer": "~3.0.0-beta.3",
"html-webpack-plugin": "^2.28.0",
"raw-loader": "^0.5.1",
"ts-loader": "^2.0.1",
"ts-node": "2.1.0",
"tslint": "^4.0.2",
"tslint-loader": "^3.4.3",
"typescript": "~2.2.1",
"webdriver-manager": "12.0.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"@types/body-parser": "0.0.33",
"@types/express": "4.0.33",
"@types/morgan": "1.7.32",
"@types/validator": "5.7.34",
"@types/winston": "0.0.28",
"concurrently": "3.1.0",
"dotenv": "2.0.0",
"nodemon": "1.11.0",
"rimraf": "2.5.4",
"wait-on": "1.5.3"
},
"config": {
"ionic_src_dir": "./src/mobile",
"ionic_webpack": "./config/webpack.mobile.config.js",
"ionic_ts_config": "./tsconfig/mobile.json",
"ionic_www_dir": "./build/mobile/www",
"ionic_build_dir": "./build/mobile/www/build"
},
"cordovaPlugins": [
"cordova-plugin-whitelist",
"cordova-plugin-console",
"cordova-plugin-statusbar",
"cordova-plugin-device",
"cordova-plugin-splashscreen",
"ionic-plugin-keyboard"
],
"cordovaPlatforms": [
"ios",
{
"platform": "ios",
"version": "",
"locator": "ios"
}
],
"description": "mobile: An Ionic project"
}