-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
91 lines (91 loc) · 2.94 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
{
"name": "starter",
"version": "0.0.0",
"engines": {
"yarn": ">=1.22.0 <2",
"npm": "Please use Yarn instead of NPM to install dependencies"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"e2e": "ng e2e",
"build:prod": "ng build --prod",
"lint": "npm run lint:ts && npm run lint:scss",
"lint:ts": "eslint \"src/**/*.ts\" --fix",
"lint:scss": "stylelint \"src/**/*.scss\" --fix",
"hmr": "ng serve --hmr",
"analyze": "ng build --stats-json && webpack-bundle-analyzer dist/starter/stats.json",
"prepare": "is-ci || husky"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.4",
"@angular/cdk": "^18.2.4",
"@angular/common": "^18.2.4",
"@angular/compiler": "^18.2.4",
"@angular/core": "^18.2.4",
"@angular/forms": "^18.2.4",
"@angular/material": "^18.2.4",
"@angular/material-moment-adapter": "^18.2.4",
"@angular/platform-browser": "^18.2.4",
"@angular/platform-browser-dynamic": "^18.2.4",
"@angular/router": "^18.2.4",
"@ng-matero/extensions": "^18.2.0",
"@ng-matero/extensions-moment-adapter": "^18.0.0",
"@ngx-formly/core": "^6.3.6",
"@ngx-formly/material": "^6.3.6",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"angular-in-memory-web-api": "~0.18.0",
"apexcharts": "^3.51.0",
"moment": "^2.30.0",
"ng-matero": "^18.1.0",
"ngx-permissions": "^17.1.0",
"ngx-progressbar": "^12.0.0",
"ngx-toastr": "^19.0.0",
"photoviewer": "^3.10.0",
"rxjs": "~7.8.0",
"screenfull": "^6.0.2",
"tslib": "^2.6.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.4",
"@angular-eslint/builder": "^18.3.1",
"@angular-eslint/eslint-plugin": "^18.3.1",
"@angular-eslint/eslint-plugin-template": "^18.3.1",
"@angular-eslint/schematics": "^18.3.1",
"@angular-eslint/template-parser": "^18.3.1",
"@angular/cli": "^18.2.4",
"@angular/compiler-cli": "^18.2.4",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.0",
"@types/jasmine": "~5.1.0",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"jasmine-core": "~5.1.0",
"jasmine-spec-reporter": "~7.0.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",
"lint-staged": "^15.2.0",
"parse5": "^7.1.2",
"prettier": "^3.3.2",
"protractor": "~7.0.0",
"stylelint": "^16.5.0",
"stylelint-config-recess-order": "^5.0.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"ts-node": "~10.9.0",
"typescript": "~5.4.2",
"webpack-bundle-analyzer": "^4.10.0"
}
}