-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.55 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
{
"name": "ionic-devops-demo",
"author": "Camille Pasche",
"homepage": "http://www.skyjooy.ch/",
"private": true,
"scripts": {
"test": "karma start ./test-config/karma.conf.js",
"start": "NODE_ENV=prod node ./server.js",
"start:dev": "sudo mongod & npm run server:dev & ionic serve --dev",
"start:prod": "ionic serve --prod",
"server": "tsc server.ts --outDir ./dist && NODE_ENV=prod node ./dist/server.js",
"server:dev": "tsc server.ts -w --outDir ./dist & nodemon ./dist/server.js --dev --ignore src/ --ignore www/ --ignore .tmp/",
"mongod": "$HOME/Applications/mongodb-osx-x86_64-3.4.0/bin/mongod --dbpath $HOME/Applications/mongodb-osx-x86_64-3.4.0/data/db",
"deploy:server": "tsc server.ts --outDir ./dist && cp ./server/package.json ./dist/package.json && cp ./server/.gitignore ./dist/.gitignore && git add --all && git commit -m 'upd version - `date`' && git subtree split -P dist -b heroku-serve && git push heroku heroku-serve:master --force && git branch -D heroku-serve && heroku ps:scale web=1 && heroku open",
"clean": "ionic-app-scripts clean",
"build": "ionic-app-scripts build",
"ionic:build": "NODE_ENV=prod ionic-app-scripts build",
"ionic:serve": "ionic-app-scripts serve",
"deploy:client": "gulp deploy"
},
"dependencies": {
"@angular/common": "4.0.0",
"@angular/compiler": "4.0.0",
"@angular/compiler-cli": "4.0.0",
"@angular/core": "4.0.0",
"@angular/forms": "4.0.0",
"@angular/http": "4.0.0",
"@angular/platform-browser": "4.0.0",
"@angular/platform-browser-dynamic": "4.0.0",
"@ionic-native/core": "3.4.2",
"@ionic-native/local-notifications": "^3.4.4",
"@ionic-native/splash-screen": "3.4.2",
"@ionic-native/status-bar": "3.4.2",
"@ionic/storage": "2.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"cors": "^2.8.1",
"express": "^4.15.2",
"ionic-angular": "3.0.1",
"ionicons": "3.0.0",
"jsonwebtoken": "^7.3.0",
"mongodb": "^2.2.25",
"mongoose": "^4.9.1",
"morgan": "^1.8.1",
"rxjs": "5.1.1",
"sw-toolbox": "3.4.0",
"typescript": "2.1.4",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@ionic/app-scripts": "1.3.0",
"@ionic/cli-build-ionic-angular": "0.0.2",
"@ionic/cli-plugin-cordova": "0.0.1-alpha.12e4141f",
"@types/body-parser": "^1.16.1",
"@types/cors": "^2.8.1",
"@types/express": "^4.0.35",
"@types/jasmine": "^2.5.47",
"@types/mongodb": "^2.1.41",
"@types/mongoose": "^4.7.9",
"@types/node": "^7.0.12",
"angular2-template-loader": "^0.6.2",
"gulp": "^3.9.1",
"gulp-gh-pages": "^0.5.4",
"html-loader": "^0.4.5",
"jasmine-core": "^2.5.2",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-mocha-reporter": "^2.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"mongoose": "^4.9.1",
"nodemon": "^1.11.0",
"null-loader": "^0.1.1",
"ts-loader": "^2.0.3",
"tslint-eslint-rules": "^4.0.0",
"typescript": "~2.2.1"
},
"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"
}
],
"engines": {
"node": "~7.0.0"
},
"config": {
"ionic_webpack": "./webpack.config.js"
},
"description": "ionic-devops-front: An Ionic project"
}