This repository has been archived by the owner on Mar 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
189 lines (189 loc) · 7.76 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
181
182
183
184
185
186
187
188
189
{
"name": "angular-webpack2-starter",
"version": "1.16.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",
"webdev:hmr": "npm run webdev -- --inline --hot",
"webpack": "webpack",
"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",
"pretest:once:ci": "npm run lint",
"test:once": "karma start",
"test:once:ci": "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": " ",
"clean": "npm cache clean && npm run clean:compile && npm run rimraf -- node_modules doc typings coverage dist .awcache dll",
"clean:dist": "npm run rimraf -- dist .awcache",
"clean:dll": "npm run rimraf -- dll",
"clean:compile": "npm run rimraf -- \"compiled\" ",
"compile": "npm run compile:aot",
"compile:aot": "npm run sass && npm run clean:compile && npm run ngc && npm run build:aot",
"compile:e2e": "npm run sass && npm run clean:compile && npm run ngc && npm run build:aot:prod:e2e",
"compile:dev": "npm run sass && npm run clean:compile && npm run ngc && npm run build:aot:dev",
"compile:only": "npm run clean:compile && npm run sass && npm run ngc",
"compile:watch": "watch-run -i npm run compile:only -p 'src/app/**/*.ts, src/app/**/*.scss' npm run compile:only",
"prodserver": "node prodserver",
"sass": "node-sass src -o src --include-path node_modules --output-style compressed -q",
"sass:watch": "node-sass -w src -o src --include-path node_modules --output-style compressed -q",
"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",
"build": "npm run build:prod",
"build:aot": "npm run build:aot:prod",
"build:aot:prod": "npm run clean:dist && npm run sass && webpack",
"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",
"mock-api:reset": "node mock-api/db.js",
"mock-api:serve": "json-server mock-api/db.json -p 3001 -w --routes mock-api/routes.json --delay 500",
"deploy-dev": "s3-deploy './dist/client/**' --cwd './dist/client/' --profile dkt --region eu-west-1 --bucket dkt.flows.dev",
"deploy-test": "s3-deploy './dist/client/**' --cwd './dist/client/' --profile dkt --region eu-west-1 --bucket dkt.flows.test"
},
"dependencies": {
"@angular-redux/router": "^6.2.0",
"@angular-redux/store": "^6.2.1",
"@angular/animations": "^4.4.6",
"@angular/cdk": "2.0.0-beta.12",
"@angular/common": "^4.4.6",
"@angular/compiler": "^4.4.6",
"@angular/compiler-cli": "^4.4.6",
"@angular/core": "^4.4.6",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "^4.4.6",
"@angular/http": "^4.4.6",
"@angular/material": "2.0.0-beta.12",
"@angular/platform-browser": "^4.4.6",
"@angular/platform-browser-dynamic": "^4.4.6",
"@angular/platform-server": "^4.4.6",
"@angular/router": "^4.4.6",
"@angular/tsc-wrapped": "~4.1.0",
"@angularclass/hmr": "1.2.2",
"@angularclass/hmr-loader": "3.0.2",
"@angularclass/idle-preload": "^1.0.4",
"@ng-dynamic-forms/core": "1.4.34",
"@ng-dynamic-forms/ui-material": "1.4.34",
"@ngrx/core": "1.2.0",
"@ngrx/effects": "2.0.3",
"@ngrx/router-store": "1.2.6",
"@ngrx/store": "2.2.2",
"@ngrx/store-devtools": "3.2.4",
"@ngrx/store-log-monitor": "3.0.2",
"@types/chai": "^3.4.34",
"@types/graphql": "^0.9.1",
"@types/lodash": "^4.14.50",
"amazon-cognito-identity-js": "^1.16.0",
"angular2-uuid": "^1.1.1",
"apollo-angular": "^0.13.0",
"apollo-client": "^1.2.2",
"aws-sdk": "^2.48.0",
"core-js": "2.4.1",
"graphql-tag": "^2.0.0",
"hammerjs": "~2.0.8",
"immutable": "^3.8.1",
"ip": "~1.1.5",
"json-server": "^0.10.0",
"lodash": "^4.17.4",
"ngrx-store-freeze": "0.1.9",
"ngrx-store-logger": "0.1.7",
"redux": "^3.6.0",
"redux-observable": "^0.14.1",
"rxjs": "5.5.2",
"s3-deploy": "^0.7.3",
"sjcl": "^1.0.6",
"web-animations-js": "^2.2.2",
"zone.js": "^0.8.18"
},
"devDependencies": {
"@types/express": "~4.0.35",
"@types/hammerjs": "~2.0.34",
"@types/ip": "~0.0.29",
"@types/jasmine": "^2.5.47",
"@types/node": "~7.0.12",
"@types/selenium-webdriver": "~3.0.1",
"angular-router-loader": "~0.6.0",
"angular2-template-loader": "~0.6.2",
"awesome-typescript-loader": "~3.1.2",
"codelyzer": "^3.0.1",
"compression-webpack-plugin": "~0.4.0",
"copy-webpack-plugin": "~4.0.1",
"css-loader": "~0.28.0",
"es6-promise": "~4.1.0",
"es6-promise-loader": "~1.0.2",
"express": "~4.15.2",
"html-webpack-plugin": "~2.28.0",
"imports-loader": "~0.7.1",
"istanbul-instrumenter-loader": "^2.0.0",
"json-loader": "~0.5.4",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "~1.1.1",
"karma-jasmine": "~1.1.0",
"karma-mocha-reporter": "~2.2.3",
"karma-phantomjs-launcher": "~1.0.4",
"karma-remap-coverage": "0.1.4",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "2.0.3",
"node-sass": "~4.5.2",
"npm-run-all": "~4.0.2",
"phantomjs-polyfill": "~0.0.2",
"phantomjs-prebuilt": "~2.1.14",
"protractor": "^5.1.1",
"raw-loader": "~0.5.1",
"rimraf": "~2.6.1",
"source-map-loader": "~0.2.1",
"string-replace-loader": "~1.2.0",
"to-string-loader": "~1.1.5",
"ts-helpers": "~1.1.2",
"ts-node": "~3.0.2",
"tslint": "^5.2.0",
"tslint-eslint-rules": "^4.0.0",
"tslint-loader": "~3.5.2",
"typescript": ">=2.1.0 <2.4.0",
"watch-run": "~1.2.5",
"webpack": "~2.5.0",
"webpack-bundle-analyzer": "^2.3.1",
"webpack-dev-middleware": "~1.10.1",
"webpack-dev-server": "~2.4.2",
"webpack-md5-hash": "^0.0.5"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/qdouble/angular-webpack2-starter/issues"
},
"homepage": "https://github.com/qdouble/angular-webpack2-starter#readme"
}