-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
49 lines (49 loc) · 1.72 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
{
"name": "ngx-universal",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "ng build && yarn copyStaticFiles",
"copyStaticFiles": "cp ./README.md ./LICENSE ./dist",
"release:lib": "npm run prepublish:lib && cd ./lib && npm i && npm run standard",
"prepublish:lib": "npm run build",
"publish:lib": "npm publish ./dist --readme --access public",
"release:version": "npm run release:lib && npm run publish:lib",
"format:check": "prettier --write --config ./.prettierrc --list-different \"lib/src/*{.ts,.json,.scss}\"",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points"
},
"private": false,
"dependencies": {
"@angular/common": "14.1.0",
"@angular/compiler": "14.1.0",
"@angular/compiler-cli": "14.1.0",
"@angular/core": "14.1.0",
"@angular/platform-browser": "14.1.0",
"@nguniversal/express-engine": "14.0.3",
"rxjs": "7.5.6",
"tslib": "2.4.0",
"zone.js": "0.11.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.1.0",
"@angular/cli": "14.1.0",
"@angular/language-service": "14.1.0",
"@angular/platform-browser-dynamic": "14.1.0",
"@types/jasmine": "4.0.3",
"codelyzer": "6.0.2",
"cookie": "0.5.0",
"karma": "6.4.0",
"karma-chrome-launcher": "3.1.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"ng-packagr": "14.1.0",
"prettier": "2.7.1",
"rxjs-tslint": "0.1.8",
"standard-version": "9.5.0",
"tslint-consistent-codestyle": "1.16.0",
"tslint-origin-ordered-imports-rule": "2.0.0",
"tslint-rxjs-subject-restrictions-rule": "1.0.4",
"typescript": "4.6.3"
}
}