-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
166 lines (166 loc) · 5.96 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
{
"name": "ang-ssr-site-base",
"version": "7.0.0",
"description": "ANG-SSR based on seed project for Angular Universal apps featuring Server-Side Rendering (SSR), Webpack, CLI scaffolding, dev/prod modes, AoT compilation, HMR, SCSS compilation, lazy loading, config, cache, i18n, SEO, and TSLint/codelyzer",
"repository": {
"type": "git",
"url": "https://github.com/ekarpovs/ang-ssr-site-base.git"
},
"author": {
"name": "Evgeny Karpovsky",
"email": "ekarpovsky@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ekarpovs/ang-ssr-site-base.git/issues"
},
"homepage": "https://github.com/ekarpovs/ang-ssr-site-base.git#readme",
"scripts": {
"ng": "ng",
"clean": "rimraf .cache dist coverage test-report.xml",
"start": "ng serve",
"start:hmr": "ng serve --c hmr",
"start:prod": "ng serve --prod",
"start:ssr": "yarn build:ssr && yarn serve:ssr",
"start:ssr:prod": "yarn build:ssr:prod && yarn serve:ssr",
"build": "ng build",
"build:prod": "ng build --prod",
"compile:server": "tsc -p tsconfig.server-compile.json",
"build:ssr": "ng build && ng run ang-ssr-site-base:server && yarn compile:server",
"build:ssr:prod": "ng build --prod && ng run ang-ssr-site-base:server:production && yarn compile:server",
"serve:ssr": "node dist/server",
"test": "jest --colors",
"test:coverage": "jest --coverage --colors",
"test:ci": "jest --ci --maxWorkers=2 --coverage --colors",
"e2e": "yarn build:ssr && concurrently -k --kill-others-on-fail -s first \"yarn serve:ssr\" \"jest -c ./tools/test/e2e-preset.json --runInBand --colors\"",
"e2e:ci": "concurrently -k --kill-others-on-fail -s first \"yarn serve:ssr\" \"jest --ci -c ./tools/test/e2e-preset.json --colors\"",
"lint": "ng lint",
"lint:check": "tslint-config-prettier-check ./tslint.json",
"lint:fix": "prettier-tslint fix src/**/*.ts",
"ci:before": "greenkeeper-lockfile-update",
"ci:after": "greenkeeper-lockfile-upload",
"docs": "node_modules/.bin/compodoc -p tsconfig.json -d docs -n \"VS\" -t --theme stripe",
"release": "standard-version && yarn docs"
},
"dependencies": {
"@angular/animations": "~7.2.0-rc.0",
"@angular/cdk": "~7.2.0",
"@angular/common": "~7.2.0-rc.0",
"@angular/core": "~7.2.0-rc.0",
"@angular/flex-layout": "7.0.0-beta.22",
"@angular/forms": "~7.2.0-rc.0",
"@angular/http": "~7.2.0-rc.0",
"@angular/material": "~7.2.0",
"@angular/platform-browser": "~7.2.0-rc.0",
"@angular/platform-browser-dynamic": "~7.2.0-rc.0",
"@angular/platform-server": "~7.2.0-rc.0",
"@angular/router": "~7.2.0-rc.0",
"@angularclass/bootloader": "~1.0.1",
"@ngrx/effects": "~7.0.0",
"@ngrx/entity": "~7.0.0",
"@ngrx/store": "~7.0.0",
"@nguniversal/common": "~7.0.2",
"@nguniversal/express-engine": "~7.0.2",
"@nguniversal/module-map-ngfactory-loader": "~7.0.2",
"@ngx-cache/core": "~7.0.0",
"@ngx-cache/fs-storage": "~7.0.0",
"@ngx-cache/platform-browser": "~7.0.0",
"@ngx-cache/platform-server": "~7.0.0",
"@ngx-config/core": "~7.0.0",
"@ngx-config/http-loader": "~7.0.0",
"@ngx-meta/core": "~7.0.0",
"@ngx-translate/core": "~11.0.1",
"@ngx-translate/http-loader": "~4.0.0",
"angulartics2": "~7.2.4",
"compression": "~1.7.3",
"core-js": "~2.6.1",
"debug": "~4.1.1",
"express": "~4.16.4",
"hammerjs": "~2.0.8",
"lodash": "~4.17.19",
"moment": "^2.24.0",
"ngx-perfect-scrollbar": "~7.1.0",
"reflect-metadata": "~0.1.12",
"request": "~2.88.0",
"rxjs": "~6.3.3",
"unionize": "~2.1.2",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-builders/custom-webpack": "~7.1.1",
"@angular-builders/dev-server": "~7.1.1",
"@angular-devkit/build-angular": "~0.12.0-rc.0",
"@angular-devkit/core": "~7.2.0-rc.0",
"@angular-devkit/schematics": "~7.2.0-rc.0",
"@angular/cli": "~7.2.0-rc.0",
"@angular/compiler": "~7.2.0-rc.0",
"@angular/compiler-cli": "~7.2.0-rc.0",
"@angular/language-service": "~7.2.0-rc.0",
"@angularclass/hmr": "~2.1.3",
"@commitlint/cli": "~7.2.1",
"@commitlint/config-conventional": "~7.1.2",
"@compodoc/compodoc": "~1.1.7",
"@ngrx/schematics": "~7.0.0",
"@ngrx/store-devtools": "~7.0.0",
"@types/compression": "~0.0.36",
"@types/express": "~4.16.0",
"@types/jest": "~23.3.10",
"@types/lodash": "~4.14.119",
"@types/nightmare": "~2.10.4",
"@types/node": "~10.12.18",
"angular-tslint-rules": "~1.12.1",
"codelyzer": "~4.5.0",
"concurrently": "~4.1.0",
"husky": "~1.3.0",
"jasmine-marbles": "~0.4.1",
"jest": "~23.6.0",
"jest-junit-reporter": "~1.1.0",
"jest-preset-angular": "~6.0.2",
"lint-staged": "~8.1.0",
"ng-bullet": "~1.0.3",
"nightmare": "~3.0.1",
"prettier": "~1.15.3",
"prettier-tslint": "~0.4.1",
"rimraf": "~2.6.2",
"standard-version": "~8.0.1",
"stylelint": "~9.9.0",
"stylelint-config-standard": "~18.2.0",
"tslib": "^1.10.0",
"tslint": "~5.12.0",
"tslint-config-prettier": "~1.17.0",
"tslint-immutable": "~5.0.1",
"tslint-loader": "~3.5.4",
"typescript": "~3.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "./tools/test/jest.setup.ts",
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.spec.json"
},
"__TRANSFORM_HTML__": true
},
"transform": {
"^.+\\.(css|less|scss|styl|sss)$": "<rootDir>/tools/test/style-processor.js",
"^.+\\.(ts|js|html)$": "jest-preset-angular/preprocessor.js"
},
"testResultsProcessor": "jest-junit-reporter",
"moduleNameMapper": {
"~(.*)$": "<rootDir>/src/$1"
},
"silent": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!**/+(index|testing|*.module|*.routes|*.mock|*.spec|*.e2e-spec|*.d).ts",
"!**/testing/**/*.ts",
"!**/environments/*.ts",
"!src/*.ts"
]
}
}