forked from adisreyaj/hot-toast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 4.18 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
{
"name": "@ngneat/hot-toast",
"version": "0.0.0-development",
"description": "Smoking hot Notifications for Angular. Lightweight, customizable and beautiful by default.",
"files": [
"dist/ngneat/hot-toast/**"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"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": "cp -r README.md dist/ngneat/hot-toast",
"build:lib": "ng build @ngneat/hot-toast --configuration production && npm run copy",
"postbuild:lib": "npm run build --prefix ./projects/ngneat/hot-toast",
"test:lib": "ng test @ngneat/hot-toast",
"test:lib:headless": "cross-env CI=true npm run test:lib",
"ci:start-server": "serve -l 4200 -s ./dist/toast",
"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": "^15.0.1",
"@angular/common": "^15.0.1",
"@angular/compiler": "^15.0.1",
"@angular/core": "^15.0.1",
"@angular/forms": "^15.0.1",
"@angular/platform-browser": "^15.0.1",
"@angular/platform-browser-dynamic": "^15.0.1",
"@angular/router": "^15.0.1",
"@ngneat/overview": "^2.0.2",
"prismjs": "^1.23.0",
"rxjs": "~6.6.0",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.1",
"@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.1",
"@angular/compiler-cli": "^15.0.1",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-angular": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@ngneat/lib": "^5.0.0",
"@ngneat/spectator": "^12.2.0",
"@ngneat/tailwind": "^7.0.3",
"@semantic-release/changelog": "^6.0.1",
"@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": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"all-contributors-cli": "^6.24.0",
"angular-cli-ghpages": "1.0.5",
"codelyzer": "^6.0.0",
"commitizen": "^4.2.4",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"cypress": "11.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.28.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.6.4",
"eslint-plugin-prefer-arrow": "1.2.3",
"git-cz": "^4.9.0",
"husky": "^8.0.0",
"jsonc-parser": "^3.2.0",
"lint-staged": "^13.0.4",
"ng-packagr": "^15.0.1",
"postcss": "8.4.19",
"prettier": "^2.8.0",
"semantic-release": "^19.0.5",
"serve": "^14.1.2",
"standard-version": "^9.5.0",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.15.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"tailwindcss": "3.2.4",
"typescript": "~4.8.4"
},
"lint-staged": {
"*.{js,json,css,scss,ts,html,component.html}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ngneat/hot-toast.git"
},
"publishConfig": {
"access": "restricted"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}