-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.85 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
{
"name": "angular-application",
"version": "1.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve --port=4201",
"build": "ng build",
"test": "node ./node_modules/jest/bin/jest.js --config ./jest.config.js",
"test:watch": "node ./node_modules/jest/bin/jest.js --watch --config ./jest.config.js",
"lint": "ng lint",
"e2e": "ng e2e",
"dev:ssr": "ng run angular-application:serve-ssr",
"build:prod": "ng build -c=production",
"build:universal": "npm run build:ssr && npm run serve:ssr",
"build:webpack": "npm run build:ssr && gzip -k -r dist/browser/ && npm run server:webpack && npm run serve:ssr",
"build:ssr": "npm run build:prod && npm run build:server",
"build:server": "ng run angular-application:server -c=production",
"server:webpack": "webpack --config webpack.server.config.js --progress --color",
"serve:ssr": "node dist/server/main.js",
"serve:browser": "http-server dist/browser -p=3080",
"prerender": "ng run angular-application:prerender",
"bundle-report": "ng build angular-application -c=production --stats-json && webpack-bundle-analyzer dist/browser/stats-es2015.json",
"i18n:extract": "ng xi18n --output-path assets/i18n"
},
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged --relative"
}
},
"lint-staged": {
"src/**/*.{ts,html}": [
"eslint --fix"
]
},
"dependencies": {
"@angular/animations": "~13.3.11",
"@angular/cdk": "^13.3.9",
"@angular/common": "~13.3.11",
"@angular/compiler": "~13.3.11",
"@angular/core": "~13.3.11",
"@angular/forms": "~13.3.11",
"@angular/localize": "^13.3.11",
"@angular/material": "^13.3.9",
"@angular/platform-browser": "~13.3.11",
"@angular/platform-browser-dynamic": "~13.3.11",
"@angular/platform-server": "~13.3.11",
"@angular/router": "~13.3.11",
"@angular/service-worker": "~13.3.11",
"@nguniversal/express-engine": "^9.1.1",
"@nguniversal/module-map-ngfactory-loader": "^8.2.6",
"@ngx-translate/core": "^12.1.2",
"@ngx-translate/http-loader": "^5.0.0",
"cookie-parser": "^1.4.5",
"core-js": "^3.18.0",
"express": "^4.15.2",
"ngx-quicklink": "^0.2.7",
"ngx-toastr": "^8.0.0",
"ngx-translate-multi-http-loader": "^3.0.0",
"path": "^0.12.7",
"rxjs": "^6.6.7",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.8",
"@angular-eslint/builder": "4.3.1",
"@angular-eslint/eslint-plugin": "4.3.1",
"@angular-eslint/eslint-plugin-template": "4.3.1",
"@angular-eslint/schematics": "4.3.1",
"@angular-eslint/template-parser": "4.3.1",
"@angular/cli": "~13.3.8",
"@angular/compiler-cli": "~13.3.11",
"@nguniversal/builders": "^9.1.1",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^28.1.2",
"@types/mime-types": "^2.1.1",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"babel-jest": "^28.1.2",
"compression": "^1.7.4",
"eslint": "^7.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^8.0.1",
"http-server": "^0.12.3",
"jest": "^28.1.2",
"jest-jasmine2": "^28.1.0",
"jest-html-reporter": "^3.5.0",
"jest-preset-angular": "^12.0.1",
"mime-types": "^2.1.34",
"lint-staged": "^13.0.2",
"protractor": "~7.0.0",
"sass": "^1.52.3",
"ts-loader": "^8.2.0",
"ts-jest": "^28.0.2",
"ts-node": "~8.3.0",
"typescript": "4.6.4",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.4.0",
"webpack-node-externals": "^3.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.5",
"utf-8-validate": "^5.0.7"
}
}