-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.59 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.59 KB
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
{
"name": "shongo-frontend-tablet",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:stats": "ng build --stats-json",
"analyze": "webpack-bundle-analyzer dist/shongo-frontend-tablet/stats.json",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"prepare": "husky install",
"lint": "npm run eslint && npm run stylelint && npm run prettier",
"eslint": "eslint './src/**/*.ts'",
"eslint:write": "eslint --fix './src/**/*.ts'",
"prettier": "prettier --check './src/'",
"prettier:write": "prettier --write './src/'",
"stylelint": "stylelint './src/**/*{.scss,.css}'",
"stylelint:write": "stylelint --fix './src/**/*{.scss,.css}'",
"lint-staged": "lint-staged"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.9",
"@angular/common": "^16.2.9",
"@angular/compiler": "^16.2.9",
"@angular/core": "^16.2.9",
"@angular/forms": "^16.2.9",
"@angular/material": "^16.2.8",
"@angular/platform-browser": "^16.2.9",
"@angular/platform-browser-dynamic": "^16.2.9",
"@angular/router": "^16.2.9",
"@cesnet/shongo-calendar": "^16.4.0",
"angular-calendar": "^0.31.0",
"hammerjs": "^2.0.8",
"moment": "^2.30.1",
"ngx-toastr": "^16.2.0",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^16.0.1",
"@angular-devkit/build-angular": "^16.2.6",
"@angular-eslint/builder": "^16.2.0",
"@angular-eslint/eslint-plugin": "^16.2.0",
"@angular-eslint/eslint-plugin-template": "^16.2.0",
"@angular-eslint/schematics": "^16.2.0",
"@angular-eslint/template-parser": "^16.2.0",
"@angular-eslint/utils": "^16.2.0",
"@angular/cli": "~16.2.6",
"@angular/compiler-cli": "^16.2.9",
"@types/jasmine": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-plugin-rxjs": "^5.0.3",
"husky": "^8.0.3",
"jasmine-core": "^5.1.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lint-staged": "^14.0.1",
"moment-locales-webpack-plugin": "^1.2.0",
"prettier-plugin-organize-imports": "^3.2.3",
"stylelint": "^15.10.3",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-order": "^6.0.3",
"stylelint-selector-bem-pattern": "^3.0.1",
"typescript": "~5.1.6",
"webpack-bundle-analyzer": "^4.10.2"
}
}