-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
180 lines (180 loc) · 7.27 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"name": "angular-webpack2-starter",
"version": "1.15.0",
"description": "Angular and Webpack 2 Starter",
"author": "Qdouble <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/qdouble/angular-webpack2-starter.git"
},
"scripts": {
"postinstall": "npm run sass && npm run build:dll",
"rimraf": "rimraf",
"webdev": "webpack-dev-server",
"style:webdev": "webpack-dev-server --config ./webpack.style.config.ts",
"webdev:hmr": "npm run webdev -- --inline --hot",
"style:webdev:hmr": "npm run style:webdev -- --inline --hot",
"webpack": "webpack",
"style:webpack": "webpack --config ./webpack.style.config.ts",
"ngc": "./node_modules/.bin/ngc -p tsconfig.aot.json && npm run rimraf -- output",
"webdriver-manager": "webdriver-manager",
"webdriver:update": "npm run webdriver-manager update",
"webdriver:start": "npm run webdriver-manager start",
"protractor": "protractor",
"pree2e:only": "npm run webdriver:update -- --standalone",
"e2e": "npm run sass && npm-run-all -p -r e2e:server e2e:only",
"e2e:testall": "npm run e2e:jit && npm run e2e:aot",
"e2e:aot": "npm run compile:e2e && npm run e2e",
"e2e:jit": "npm run build:prod:e2e && npm run e2e",
"e2e:only": "npm run protractor",
"e2e:live": "npm run e2e -- --elementExplorer",
"e2e:server": "node prodserver",
"pretest": "npm run lint && npm run sass",
"pretest:once": "npm run lint && npm run sass",
"test:once": "karma start",
"test": "karma start",
"ci": "npm run e2e:jit && npm run test:once:ci",
"ci:testall": "npm run e2e:testall && npm run test:once:ci",
"tslint": "tslint",
"lint": "npm run tslint \"src/app/**/*.ts\" ",
"clean": "npm cache clean && npm run clean:compile && npm run rimraf -- node_modules doc typings coverage www .awcache dll",
"clean:dist": "npm run rimraf -- www .awcache",
"clean:dll": "npm run rimraf -- dll",
"clean:compile": "npm run rimraf -- \"compiled\" ",
"compile": "npm run compile:aot",
"style:compile": "npm run style:compile:aot",
"style:compile:aot": "npm run sass && npm run clean:compile && npm run ngc && npm run style:build:aot:prod",
"compile:aot": "npm run sass && npm run clean:compile && npm run ngc && npm run build:aot",
"compile:dev": "npm run sass && npm run clean:compile && npm run ngc && npm run build:aot:dev",
"compile:e2e": "npm run sass && npm run clean:compile && npm run ngc && npm run build:aot:prod:e2e",
"compile:only": "npm run clean:compile && npm run sass && npm run ngc",
"prodserver": "node prodserver",
"sass": "gulp styles",
"sass:watch": "gulp",
"start": "npm run server:dev",
"start:hmr": "npm run server:hmr",
"serve80": "sudo PORT=80 node prodserver",
"server:dev": "npm-run-all -p -r webdev sass:watch",
"server:hmr": "npm-run-all -p -r webdev:hmr sass:watch",
"server:prod": "npm-run-all -p -r watch:prod prodserver",
"server:prod80": "npm-run-all -p -r serve80 watch:prod",
"debug:build": "node-nightly --inspect --debug-brk node_modules/webpack/bin/webpack.js",
"cordova": "cordova",
"deploy": "cordova run android",
"style:compile:deploy": "npm run style:compile:aot && cordova run android",
"build": "npm run build:prod",
"build:aot": "npm run build:aot:prod",
"build:aot:prod": "npm run clean:dist && npm run sass && webpack",
"style:build:aot:prod": "npm run clean:dist && npm run sass && webpack --config ./webpack.style.config.ts",
"build:aot:prod:e2e": "npm run clean:dist && npm run sass && webpack",
"build:aot:dev": "npm run clean:dist && npm run sass && webpack",
"build:dev": "npm run clean:dist && npm run sass && webpack",
"build:dll": "npm run clean:dll && npm run sass && webpack",
"build:prod": "npm run clean:dist && npm run sass && webpack",
"build:prod:e2e": "npm run clean:dist && npm run sass && webpack",
"watch": "npm run watch:dev",
"watch:dev": "npm-run-all -p -r \"build:dev -- --watch\" sass:watch",
"watch:prod": "npm-run-all -p -r \"build:prod -- --watch\" sass:watch"
},
"dependencies": {
"@angular/common": "2.4.2",
"@angular/compiler": "2.4.2",
"@angular/compiler-cli": "2.4.2",
"@angular/core": "2.4.2",
"@angular/forms": "2.4.2",
"@angular/http": "2.4.2",
"@angular/material": "^2.0.0-beta.1",
"@angular/platform-browser": "2.4.2",
"@angular/platform-browser-dynamic": "2.4.2",
"@angular/router": "3.4.2",
"@angular/tsc-wrapped": "0.5.1",
"@angularclass/hmr": "1.2.2",
"@angularclass/hmr-loader": "3.0.2",
"@angularclass/idle-preload": "^1.0.4",
"bootstrap": "github:CovalentLabs/bootstrap#v4-dev",
"core-js": "2.4.1",
"hammerjs": "~2.0.8",
"jquery": "^3.1.1",
"lodash.isequalwith": "^4.4.0",
"lodash.mergewith": "^4.6.0",
"moment": "^2.17.1",
"rxjs": "5.0.0-beta.12",
"typescript-collections": "^1.2.3",
"zone.js": "~0.7.4"
},
"devDependencies": {
"@types/core-js": "~0.9.35",
"@types/express": "~4.0.33",
"@types/hammerjs": "~2.0.33",
"@types/ip": "~0.0.29",
"@types/jasmine": "~2.5.35",
"@types/jquery": "^2.0.39",
"@types/node": "~6.0.52",
"@types/selenium-webdriver": "~2.53.37",
"angular-router-loader": "~0.5.0",
"angular2-template-loader": "~0.6.0",
"autoprefixer": "^6.6.1",
"awesome-typescript-loader": "~3.0.0-beta.17",
"codelyzer": "~2.0.0-beta.3",
"compression": "1.6.2",
"compression-webpack-plugin": "~0.3.1",
"copy-webpack-plugin": "~4.0.0",
"cordova": "^6.4.0",
"css-loader": "^0.26.1",
"es6-promise": "~4.0.5",
"es6-promise-loader": "~1.0.2",
"express": "4.14.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"gulp": "^3.9.1",
"gulp-sass": "^3.1.0",
"html-webpack-plugin": "~2.26.0",
"imports-loader": "~0.7.0",
"ip": "~1.1.3",
"istanbul-instrumenter-loader": "~0.2.0",
"json-loader": "~0.5.4",
"karma": "~1.3.0",
"karma-chrome-launcher": "~2.0.0",
"karma-coverage": "~1.1.1",
"karma-jasmine": "~1.1.0",
"karma-mocha-reporter": "~2.2.0",
"karma-phantomjs-launcher": "~1.0.2",
"karma-remap-coverage": "0.1.4",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~1.8.0",
"node-sass": "~4.2.0",
"npm-run-all": "~4.0.0",
"phantomjs-polyfill": "~0.0.2",
"phantomjs-prebuilt": "~2.1.13",
"postcss-loader": "^1.2.2",
"protractor": "~4.0.8",
"raw-loader": "~0.5.1",
"rimraf": "~2.5.4",
"sass-loader": "^4.1.1",
"source-map-loader": "~0.1.5",
"string-replace-loader": "~1.0.5",
"style-loader": "^0.13.1",
"to-string-loader": "~1.1.5",
"ts-helpers": "~1.1.1",
"ts-node": "~2.0.0",
"tslint": "~4.3.1",
"tslint-loader": "~3.3.0",
"typescript": "^2.2.0-dev.20170112",
"webpack": "2.2.0-rc.3",
"webpack-bundle-analyzer": "^2.2.1",
"webpack-dev-middleware": "~1.9.0",
"webpack-dev-server": "2.2.0-rc.0",
"webpack-md5-hash": "^0.0.5"
},
"cordovaPlugins": [
"cordova-plugin-device",
"cordova-plugin-console",
"cordova-plugin-whitelist",
"cordova-plugin-splashscreen",
"cordova-plugin-statusbar",
"ionic-plugin-keyboard",
"de.appplant.cordova.plugin.local-notification",
"cordova-plugin-geolocation",
"cordova-plugin-facebook4"
],
"cordovaPlatforms": []
}