This repository has been archived by the owner on Sep 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 4.45 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
{
"name": "@colmena/angular-nest-universal",
"description": "NestJS API with Angular Universal in a Nx Workspace",
"version": "0.0.0",
"license": "MIT",
"repository": {
"type" : "git",
"url" : "https://github.com/colmena/angular-nest-universal-starter.git"
},
"homepage": "https://angular-nest-universal.now.sh/",
"scripts": {
"dev:api": "ng serve api",
"dev:admin": "ng serve admin",
"build": "npm-run-all build:admin build:admin:universal build:api",
"build:api": "ng build api --prod",
"build:admin": "ng build admin --prod",
"build:admin:watch": "ng build admin --watch",
"build:admin:universal": "ng run admin:server --configuration=production",
"build:admin:universal:watch": "ng run admin:server --watch",
"build:watch": "npm-run-all -p build:admin:watch build:admin:universal:watch",
"docker": "npm run docker:build && npm run docker:run",
"docker:build": "docker build -f Dockerfile.build -t colmena/angular-nest-universal:latest --rm .",
"docker:build:dist": "docker build -f Dockerfile -t colmena/angular-nest-universal-dist:latest --rm .",
"docker:run": "docker run -it --rm -p 8080:8080 -e PORT=8080 --name angular_nest_universal colmena/angular-nest-universal:latest",
"docker:run:dist": "docker run -it --rm -p 8080:8080 -e PORT=8080 --name angular_nest_universal colmena/angular-nest-universal-dist:latest",
"docker:push": "docker push colmena/angular-nest-universal:latest",
"deploy": "now --team colmena && now alias",
"start": "node dist/apps/api/main",
"postinstall": "ts-node tools/generate-version",
"test": "ng test",
"lint": "./node_modules/.bin/nx lint && ng lint",
"e2e": "ng e2e",
"affected:apps": "./node_modules/.bin/nx affected:apps",
"affected:libs": "./node_modules/.bin/nx affected:libs",
"affected:build": "./node_modules/.bin/nx affected:build",
"affected:e2e": "./node_modules/.bin/nx affected:e2e",
"affected:test": "./node_modules/.bin/nx affected:test",
"affected:lint": "./node_modules/.bin/nx affected:lint",
"affected:dep-graph": "./node_modules/.bin/nx affected:dep-graph",
"format": "./node_modules/.bin/nx format:write",
"format:write": "./node_modules/.bin/nx format:write",
"format:check": "./node_modules/.bin/nx format:check",
"update": "ng update @nrwl/schematics",
"update:check": "ng update",
"pretty": "yarn format:write",
"workspace-schematic": "./node_modules/.bin/nx workspace-schematic",
"dep-graph": "./node_modules/.bin/nx dep-graph",
"help": "./node_modules/.bin/nx help"
},
"private": true,
"dependencies": {
"@angular/animations": "^6.1.0",
"@angular/common": "^6.1.0",
"@angular/compiler": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/forms": "^6.1.0",
"@angular/http": "^6.1.10",
"@angular/platform-browser": "^6.1.0",
"@angular/platform-browser-dynamic": "^6.1.0",
"@angular/platform-server": "^6.1.0",
"@angular/router": "^6.1.0",
"@nestjs/common": "^5.3.11",
"@nestjs/core": "^5.3.11",
"@nestjs/ng-universal": "^0.1.1",
"@ngrx/effects": "6.1.0",
"@ngrx/router-store": "6.1.0",
"@ngrx/store": "6.1.0",
"@nguniversal/common": "^6.1.0",
"@nguniversal/express-engine": "^6.1.0",
"@nguniversal/module-map-ngfactory-loader": "^6.1.0",
"@nrwl/nx": "6.4.0",
"core-js": "^2.5.4",
"express": "4.16.3",
"npm-run-all": "^4.1.3",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.8.0",
"@angular/cli": "6.2.4",
"@angular/compiler-cli": "^6.1.0",
"@angular/language-service": "^6.1.0",
"@ngrx/store-devtools": "6.1.0",
"@nrwl/builders": "6.4.0",
"@nrwl/schematics": "6.4.0",
"@types/express": "4.16.0",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^23.0.0",
"@types/node": "~8.9.4",
"codelyzer": "~4.2.1",
"git-describe": "latest",
"jasmine-core": "~2.99.1",
"jasmine-marbles": "0.3.1",
"jasmine-spec-reporter": "~4.2.1",
"jest": "^23.0.0",
"jest-preset-angular": "6.0.1",
"karma": "~3.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"ngrx-store-freeze": "0.2.4",
"prettier": "1.13.7",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~2.9.2"
}
}