-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.34 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
{
"name": "admin-angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "pnpm run i18n && ng serve",
"build": "pnpm run i18n && ng build",
"watch": "pnpm run i18n && ng build --watch --configuration development",
"test": "ng test",
"lint": "prettier --write './src/*.{ts,scss,html}' './src/**/*.{ts,scss,html}' && ng lint --fix",
"prepare": "husky install",
"lint-staged": "lint-staged",
"i18n": "ng extract-i18n --output-path ./src/locales && rimraf ./src/locales/messages.es.xlf && cpy ./messages.xlf . --cwd=src/locales --rename=messages.es.xlf"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.9",
"@angular/common": "^15.2.9",
"@angular/compiler": "^15.2.9",
"@angular/core": "^15.2.9",
"@angular/forms": "^15.2.9",
"@angular/platform-browser": "^15.2.9",
"@angular/platform-browser-dynamic": "^15.2.9",
"@angular/router": "^15.2.9",
"angular-oauth2-oidc": "^15.0.1",
"animate.css": "^4.1.1",
"primeicons": "^6.0.1",
"primeng": "15.4.1",
"rxjs": "~7.8.1",
"tslib": "^2.5.3",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.8",
"@angular-eslint/builder": "15.1.0",
"@angular-eslint/eslint-plugin": "15.1.0",
"@angular-eslint/eslint-plugin-template": "15.1.0",
"@angular-eslint/schematics": "15.1.0",
"@angular-eslint/template-parser": "15.1.0",
"@angular/cli": "~15.0.5",
"@angular/compiler-cli": "^15.2.9",
"@angular/localize": "15.0.4",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@schematics/angular": "^15.2.8",
"@tailwindcss/forms": "^0.5.3",
"@types/jasmine": "~4.3.4",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"autoprefixer": "^10.4.14",
"cpy-cli": "^4.2.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jasmine-core": "~5.0.1",
"karma": "~6.4.2",
"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": "^13.2.2",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"tailwindcss": "^3.3.2",
"typescript": "~4.9.5"
}
}