-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 3.15 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
{
"name": "esn-germany-website",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:local-network": "ng serve -o --host 0.0.0.0 --disable-host-check",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build:prod": "ng build --configuration production",
"dev:ssr": "ng run esn-germany-website:serve-ssr",
"serve:ssr": "node dist/esn-germany-website/server/main.js",
"build:ssr": "ng build --configuration production && ng run esn-germany-website:server:production",
"prerender": "ng run esn-germany-website:prerender",
"timestamp": "node ./timestamp.js",
"cy:open": "cypress open",
"cy:run": "cypress run --browser chrome"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.0",
"@angular/common": "^16.2.0",
"@angular/compiler": "^16.2.0",
"@angular/core": "^16.2.0",
"@angular/forms": "^16.2.0",
"@angular/platform-browser": "^16.2.0",
"@angular/platform-browser-dynamic": "^16.2.0",
"@angular/platform-server": "^16.2.0",
"@angular/router": "^16.2.0",
"@angular/service-worker": "^16.2.0",
"@babel/helper-member-expression-to-functions": "^7.22.5",
"@ngneat/tailwind": "^7.0.3",
"@nguniversal/builders": "^16.1.3",
"@nguniversal/express-engine": "^16.1.3",
"@types/marked": "^5.0.1",
"@yellowspot/ng-truncate": "^2.0.2",
"autoprefixer": "^10.4.14",
"express": "^4.18.2",
"ng-gallery": "^11.0.0",
"marked": "^7.0.2",
"rxjs": "^7.8.1",
"tslib": "^2.6.1",
"zone.js": "^0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.0",
"@angular-eslint/builder": "^16.1.0",
"@angular-eslint/eslint-plugin": "^16.1.0",
"@angular-eslint/eslint-plugin-template": "^16.1.0",
"@angular-eslint/schematics": "^16.1.0",
"@angular-eslint/template-parser": "^16.1.0",
"@angular/cli": "^16.2.0",
"@angular/compiler-cli": "^16.2.0",
"@cypress/schematic": "^2.5.0",
"@tailwindcss/typography": "^0.5.9",
"@types/express": "^4.17.17",
"@types/jasmine": "^4.3.5",
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"codelyzer": "^6.0.2",
"cypress": "^12.17.3",
"eslint": "^8.46.0",
"husky": "^8.0.3",
"jasmine-core": "^5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lint-staged": "^13.2.3",
"moment-timezone": "^0.5.43",
"ngx-build-plus": "^16.0.0",
"ngx-markdown": "^16.0.0",
"ngx-tailwind": "^4.0.0",
"postcss": "^8.4.27",
"prettier": "^3.0.1",
"protractor": "^7.0.0",
"replace-in-file": "^7.0.1",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.1.6",
"yarn-upgrade-all": "^0.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,scss,html,css,md}": "prettier --write"
}
}