-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.09 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
{
"name": "knblog-ui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "NG_APP_ENV=development ng serve --configuration development --project web",
"start:prod": "NG_APP_ENV=production ng serve --configuration development --project web",
"build": "npm run build:prod",
"build:dev": "NG_APP_ENV=development ng build --configuration development --project web",
"build:prod": "NG_APP_ENV=production ng build --configuration production --project web",
"watch:dev": "NG_APP_ENV=development ng build --watch --configuration development --project web",
"test": "ng test",
"preview": "angular-http-server --path dist/web/browser",
"lint": "ng lint --cache && npm run stylelint && npm run prettier",
"lint:fix": "ng lint --cache --fix && npm run stylelint:fix && npm run prettier:fix",
"prettier": "prettier --check projects/**/*.{html,*scss}",
"prettier:fix": "prettier --write projects/**/*.{html,*scss}",
"stylelint": "stylelint projects/**/*.*scss",
"stylelint:fix": "stylelint --cache --fix projects/**/*.*scss "
},
"private": true,
"dependencies": {
"@abacritt/angularx-social-login": "^2.2.0",
"@angular/animations": "^17.3.9",
"@angular/cdk": "^17.3.9",
"@angular/common": "^17.3.9",
"@angular/compiler": "^17.3.9",
"@angular/core": "^17.3.9",
"@angular/forms": "^17.3.9",
"@angular/material": "^17.3.9",
"@angular/platform-browser": "^17.3.9",
"@angular/platform-browser-dynamic": "^17.3.9",
"@angular/platform-server": "^17.3.9",
"@angular/router": "^17.3.9",
"@angular/ssr": "^17.3.7",
"eslint-plugin-rxjs": "^5.0.3",
"express": "^4.21.0",
"luxon": "^3.5.0",
"ngx-quill": "^25.3.2",
"quill-image-resizor": "^1.3.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zod": "^3.23.8",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.7",
"@angular-eslint/builder": "17.0.1",
"@angular-eslint/eslint-plugin": "17.0.1",
"@angular-eslint/eslint-plugin-template": "17.0.1",
"@angular-eslint/schematics": "17.0.1",
"@angular-eslint/template-parser": "17.0.1",
"@angular/cli": "^17.3.7",
"@angular/compiler-cli": "^17.3.9",
"@ngx-env/builder": "^17.3.0",
"@types/express": "^4.17.17",
"@types/jasmine": "~5.1.0",
"@types/lodash": "^4.17.7",
"@types/luxon": "^3.4.2",
"@types/node": "^18.18.0",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"angular-http-server": "^1.12.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.7",
"eslint-plugin-prettier": "^5.1.3",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^17.0.0",
"prettier": "^3.3.0",
"stylelint": "^16.6.1",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "~5.2.2"
}
}