-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 3.06 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
{
"name": "ng-universal",
"version": "3.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"ssr:serve": "nodemon --watch src/ -e ts,html,scss --exec 'npm run build:ssr && npm run serve:ssr'",
"build": "ng build",
"build:ng-universal": "rm -rf ./dist/ng-universal && ng build ng-universal && npm run pack:ng-universal",
"build:universal-ssr-mocks": "rm -rf ./dist/universal-ssr-mocks && ng build universal-ssr-mocks && npm run pack:universal-ssr-mocks",
"pack:ng-universal": "cd dist/ng-universal && npm pack",
"pack:universal-ssr-mocks": "cd dist/universal-ssr-mocks && npm pack",
"pack:all": "npm run pack:ng-universal && npm run pack:universal-ssr-mocks",
"publish:ng-universal": "npm publish ./dist/ng-universal/trilon-ng-universal-3.0.1.tgz --access=public",
"publish:universal-ssr-mocks": "npm publish ./dist/universal-ssr-mocks/trilon-universal-ssr-mocks-1.0.0.tgz --access=public",
"publish": "npm run build:ng-universal && npm run publish:ng-universal",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"serve": "node serve-script",
"compile:server": "webpack --config webpack.server.config.js --progress --colors",
"serve:ssr": "node dist/server/main",
"build:ssr": "npm run build:client-and-server-bundles && npm run compile:server",
"build:client-and-server-bundles": "ng build --prod && ng run helpers-demo:server:production"
},
"private": true,
"dependencies": {
"@angular/animations": "~10.0.9",
"@angular/common": "~10.0.9",
"@angular/compiler": "~10.0.9",
"@angular/core": "~10.0.9",
"@angular/forms": "~10.0.9",
"@angular/http": "~7.2.16",
"@angular/platform-browser": "~10.0.9",
"@angular/platform-browser-dynamic": "~10.0.9",
"@angular/platform-server": "~10.0.9",
"@angular/router": "~10.0.9",
"@nestjs/common": "^7.4.2",
"@nestjs/core": "^7.4.2",
"@nestjs/ng-universal": "^4.0.1",
"@nestjs/platform-express": "^7.4.2",
"@nguniversal/express-engine": "^10.0.2",
"@nguniversal/module-map-ngfactory-loader": "^8.2.6",
"core-js": "^3.6.5",
"reflect-metadata": "^0.1.13",
"rxjs": "~6.6.2",
"tslib": "^2.0.1",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1000.5",
"@angular-devkit/build-ng-packagr": "~0.1000.5",
"@angular/cli": "~10.0.5",
"@angular/compiler-cli": "~10.0.9",
"@angular/language-service": "~10.0.9",
"@types/jasmine": "~3.5.12",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^14.0.27",
"codelyzer": "~6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.2",
"karma": "~5.1.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"ng-packagr": "^10.0.3",
"nodemon": "^2.0.4",
"protractor": "~7.0.0",
"ts-loader": "^8.0.2",
"ts-node": "~8.10.2",
"tsickle": "0.39.1",
"tslint": "~6.1.3",
"typescript": "~3.9.7",
"wait-on": "^5.2.0",
"webpack-cli": "^3.3.12"
}
}