-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
122 lines (122 loc) · 4.23 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@ngxpert/hot-toast",
"version": "0.0.0-development",
"description": "Smoking hot Notifications for Angular. Lightweight, customizable and beautiful by default.",
"files": [
"dist/ngxpert/hot-toast/**"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:lib": "ng build @ngxpert/hot-toast --watch",
"build": "ng build",
"unit": "npm run cy:open",
"test": "npm run ci:cy-run",
"lint": "ng lint",
"e2e": "npm run ci:cy-run",
"contributors:add": "all-contributors add",
"hooks:pre-commit": "node hooks/pre-commit.js",
"commit": "cz",
"release:first": "npm run release -- --first-release",
"deploy": "ng deploy --base-href=/hot-toast/",
"copy": "cpx README.md dist/ngxpert/hot-toast",
"build:lib": "ng build @ngxpert/hot-toast --configuration production && npm run copy",
"postbuild:lib": "npm run build --prefix ./projects/ngxpert/hot-toast",
"test:lib": "ng test @ngxpert/hot-toast",
"test:lib:headless": "cross-env CI=true npm run test:lib",
"ci:start-server": "serve -l 4200 -s ./dist/toast/browser",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:chrome": "cypress run --browser chrome",
"cy:run:firefox": "cypress run --browser firefox",
"cy:run:edge": "cypress run --browser edge",
"ci:cy-run": "start-server-and-test ci:start-server http://localhost:4200 cy:run",
"ci:cy-run:chrome": "start-server-and-test ci:start-server http://localhost:4200 cy:run:chrome",
"ci:cy-run:firefox": "start-server-and-test ci:start-server http://localhost:4200 cy:run:firefox",
"ci:cy-run:edge": "start-server-and-test ci:start-server http://localhost:4200 cy:run:edge",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"dependencies": {
"@angular/animations": "^19.0.3",
"@angular/cdk": "~19.0.2",
"@angular/common": "^19.0.3",
"@angular/compiler": "^19.0.3",
"@angular/core": "^19.0.3",
"@angular/forms": "^19.0.3",
"@angular/platform-browser": "^19.0.3",
"@angular/platform-browser-dynamic": "^19.0.3",
"@angular/router": "^19.0.3",
"@ngneat/overview": "6.1.1",
"@ngxpert/cmdk": "^1.0.0",
"highlight.js": "^11.10.0",
"prismjs": "^1.23.0",
"rxjs": "~6.6.0",
"tslib": "^2.3.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.4",
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cdk": "^19.0.2",
"@angular/cli": "^19.0.4",
"@angular/compiler-cli": "^19.0.3",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-angular": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@ngneat/spectator": "^12.2.0",
"@ngneat/tailwind": "^7.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/typography": "^0.5.8",
"@types/node": "^18.11.9",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"all-contributors-cli": "^6.24.0",
"angular-cli-ghpages": "^2.0.0-beta.2",
"codelyzer": "^6.0.0",
"commitizen": "^4.2.4",
"copyfiles": "^2.4.1",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"cypress": "^13.16.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.57.0",
"git-cz": "^4.9.0",
"husky": "^8.0.0",
"jsonc-parser": "^3.2.0",
"lint-staged": "^13.0.4",
"ng-packagr": "^19.0.1",
"postcss": "8.4.19",
"prettier": "^2.8.0",
"semantic-release": "^23.0.2",
"serve": "^14.1.2",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.15.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"tailwindcss": "3.2.4",
"typescript": "~5.6.3"
},
"lint-staged": {
"*.{js,json,css,scss,ts,html,component.html}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ngxpert/hot-toast.git"
},
"publishConfig": {
"access": "restricted"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}