-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
80 lines (80 loc) · 2.45 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
{
"name": "admin-cpanel",
"version": "1.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:en": "ng serve --configuration=en -- --port 4201",
"extract": "ng extract-i18n --output-path src/locales",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint --fix"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.3.0",
"@angular/cdk": "^13.3.9",
"@angular/common": "~16.2.2",
"@angular/compiler": "~13.3.0",
"@angular/core": "~16.1.8",
"@angular/forms": "~13.3.0",
"@angular/material": "^13.3.9",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~16.1.8",
"@angular/router": "~13.3.0",
"@ngrx/effects": "^16.1.0",
"@ngrx/router-store": "^16.2.0",
"@ngrx/store": "^16.1.0",
"@ngrx/store-devtools": "^16.2.0",
"@sentry/angular": "^7.12.1",
"@sentry/tracing": "^7.12.1",
"@tailwindcss/aspect-ratio": "^0.4.1",
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/line-clamp": "^0.4.1",
"@tailwindcss/typography": "^0.5.6",
"ngx-pagination": "^6.0.2",
"ngx-permissions": "^13.0.1",
"rxjs": "~7.8.1",
"tslib": "^2.3.0",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.5",
"@angular-eslint/builder": "13.5.0",
"@angular-eslint/eslint-plugin": "16.1.1",
"@angular-eslint/eslint-plugin-template": "16.1.0",
"@angular-eslint/schematics": "16.1.0",
"@angular-eslint/template-parser": "16.1.1",
"@angular/cli": "~16.2.0",
"@angular/compiler-cli": "~13.3.0",
"@angular/localize": "^13.3.11",
"@ngx-env/builder": "^2.2.0",
"@schematics/angular": "^14.2.2",
"@types/jasmine": "~3.10.0",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.1",
"autoprefixer": "^10.4.8",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jasmine-core": "~5.1.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~1.7.0",
"postcss": "^8.4.24",
"prettier": "^3.0.2",
"prettier-eslint": "^15.0.1",
"tailwindcss": "^3.3.2",
"typescript": "~4.6.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}