-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
63 lines (63 loc) · 1.89 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
{
"name": "cashew-playground",
"scripts": {
"release": "cd projects/ngneat/cashew && standard-version --infile ../../../CHANGELOG.md",
"contributors:add": "all-contributors add",
"build": "ng build --configuration production",
"build:lib": "ng build @ngneat/cashew --configuration production",
"start": "ng serve",
"test": "npm run test:lib",
"test:lib": "npm run test --prefix projects/ngneat/cashew --runInBand",
"test:lib:watch": "npm run test:watch --prefix projects/ngneat/cashew",
"ng": "ng",
"commit": "git-cz",
"postbuild:lib": "cp README.md dist/ngneat/cashew",
"prepare": "husky install",
"pre-commit": "lint-staged --allow-empty"
},
"dependencies": {
"@angular/animations": "^17.0.8",
"@angular/common": "^17.0.8",
"@angular/compiler": "^17.0.8",
"@angular/core": "^17.0.8",
"@angular/forms": "^17.0.8",
"@angular/platform-browser": "^17.0.8",
"@angular/platform-browser-dynamic": "^17.0.8",
"@angular/router": "^17.0.8",
"rxjs": "7.8.1",
"tslib": "2.6.2",
"zone.js": "0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.9",
"@angular/cli": "^17.0.9",
"@angular/compiler-cli": "^17.0.8",
"@angular/language-service": "^17.0.8",
"@commitlint/cli": "18.4.4",
"@commitlint/config-angular": "18.4.4",
"@commitlint/config-conventional": "18.4.4",
"@types/jest": "29.5.11",
"git-cz": "4.9.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-preset-angular": "13.1.5",
"lint-staged": "15.2.0",
"ng-packagr": "^17.0.3",
"prettier": "3.1.1",
"standard-version": "9.5.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "~5.2.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}