-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
103 lines (103 loc) · 3.52 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
{
"name": "helipopper-playground",
"version": "0.0.0",
"engines": {
"node": "^18.19.1 || ^20.11.1 || >=22.0.0"
},
"scripts": {
"postinstall": "patch-package",
"ng": "ng",
"start-test": "start-server-and-test",
"deploy": "ng deploy --base-href=https://ngneat.github.io/helipopper/",
"start": "ng serve",
"build": "ng build",
"contributors:add": "all-contributors add",
"hooks:pre-commit": "node hooks/pre-commit.js",
"commit": "git-cz",
"build:lib": "ng build @ngneat/helipopper --configuration production && npm run copy",
"test:lib": "ng test @ngneat/helipopper",
"release": "cd projects/ngneat/helipopper && standard-version --infile ../../../CHANGELOG.md",
"test:lib:headless": "cross-env CI=true npm run test:lib",
"copy": "cp -r README.md dist/ngneat/helipopper",
"build:playground": "ng build --project helipopper-playground --configuration production",
"test:playground": "ng test --project helipopper-playground",
"serve:playground": "ng s --project helipopper-playground --live-reload false",
"serve:playground:static": "serve -l 4200 -s dist/helipopper-playground/browser",
"// - E2E": "E2E testing",
"cy:open": "cypress open",
"cy:run": "cypress run",
"e2e": "start-test serve:playground 4200 cy:open",
"e2e:chrome": "start-test serve:playground 4200 cy:run:chrome",
"e2e:chromium": "start-test serve:playground 4200 cy:run:chromium",
"// - CI": "CI Testing",
"test:ci:e2e": "start-test serve:playground:static 4200 cy:run",
"test:playground:ci": "cross-env CI=true npm run test:playground -- --watch=false --browsers=ChromeHeadlessCustom"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"@ngneat/overview": "^6.1.0",
"rxjs": "~7.4.0",
"tippy.js": "6.3.7",
"tslib": "2.3.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.0",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@cypress/webpack-preprocessor": "5.15.5",
"@ngneat/spectator": "^7.1.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^18.16.19",
"all-contributors-cli": "^6.8.1",
"angular-cli-ghpages": "^0.6.2",
"cross-env": "^5.2.0",
"cypress": "12.3.0",
"git-cz": "^3.2.1",
"husky": "^3.0.1",
"jasmine-core": "~3.6.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^9.2.0",
"ng-packagr": "^19.0.0",
"patch-package": "8.0.0",
"prettier": "2.8.8",
"serve": "14.2.4",
"standard-version": "^8.0.2",
"start-server-and-test": "^1.12.2",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~5.6.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,json,css,scss,ts,html,component.html}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "npm run hooks:pre-commit && lint-staged"
}
}
}