-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.62 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.62 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
76
77
78
79
80
81
82
{
"name": "angry-task",
"version": "0.2.0",
"description": "💢 Simple and Modern Angular to-do app.",
"author": "Mr-Mrf-Dev",
"homepage": "https://github.com/Mr-Mrf-Dev/Angry-Task",
"repository": {
"type": "git",
"url": "https://github.com/Mr-Mrf-Dev/Angry-Task.git"
},
"bugs": {
"url": "https://github.com/Mr-Mrf-Dev/Angry-Task/issues"
},
"license": "MIT",
"private": true,
"scripts": {
"prepare": "husky",
"ng": "ng",
"start": "ng serve",
"dev": "ng serve",
"build": "ng build",
"build:prod": "ng build -c production",
"build:prod:gh": "ng build -c production --base-href 'https://mr-mrf-dev.github.io/Angry-Task/'",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:ci": "ng test --no-watch --no-progress --browsers=ChromeHeadless --code-coverage --source-map=false",
"prettier:write": "prettier --ignore-unknown --write",
"prettier:check": "prettier --ignore-unknown --check",
"lint": "ng lint",
"precommit": "npm run lint && npm run test:ci",
"update:ncu:check": "npx npm-check-updates",
"update:all": "npx npm-check-updates -u && npm i && npm up --S",
"update:ncu": "npx npm-check-updates -u && npm i",
"update:npm": "npm update --save"
},
"dependencies": {
"@angular/animations": "^21.2.0",
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/platform-browser": "^21.2.0",
"@angular/platform-browser-dynamic": "^21.2.0",
"@angular/router": "^21.2.0",
"@primeng/themes": "^21.0.4",
"@primeuix/themes": "^2.0.3",
"@tailwindcss/postcss": "^4.2.1",
"primeicons": "^7.0.0",
"primeng": "^21.1.1",
"rxjs": "~7.8.2",
"tailwindcss-primeui": "^0.6.1",
"tslib": "^2.8.1",
"zone.js": "^0.16.1"
},
"devDependencies": {
"@angular/build": "^21.2.0",
"@angular/cli": "^21.2.0",
"@angular/compiler-cli": "^21.2.0",
"@types/jasmine": "~5.1.13",
"angular-eslint": "21.2.0",
"autoprefixer": "^10.4.27",
"eslint": "^9.39.3",
"husky": "^9.1.7",
"jasmine-core": "~5.13.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.2.0",
"lint-staged": "^16.2.7",
"npm-check-updates": "^19.6.3",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.1",
"typescript": "~5.9.3",
"typescript-eslint": "8.56.1"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}