This repository has been archived by the owner on Jan 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.9 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
{
"private": true,
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ngrx-child-selectors --configuration production && cp README.md ./dist/ngrx-child-selectors",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"prettier": "prettier --check . --ignore-path .lintignore",
"prettier:fix": "prettier --write . --ignore-path .lintignore",
"eslint": "eslint . --ext .js,.ts --ignore-path .lintignore",
"eslint:fix": "eslint . --ext .js,.ts --ignore-path .lintignore --fix",
"test": "jest",
"test:coveralls": "jest && coveralls < coverage/lcov.info",
"publish": "npm run build && cd ./dist/ngrx-child-selectors && npm publish"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,html,scss,json}": "prettier --write --ignore-path .lintignore",
"*.{js,ts}": "eslint --fix"
},
"dependencies": {
"@angular/animations": "~12.0.2",
"@angular/common": "~12.0.2",
"@angular/compiler": "~12.0.2",
"@angular/core": "~12.0.2",
"@angular/forms": "~12.0.2",
"@angular/platform-browser": "~12.0.2",
"@angular/platform-browser-dynamic": "~12.0.2",
"@angular/router": "~12.0.2",
"@ngrx/store": "^12.0.0",
"rxjs": "~6.6.0",
"tslib": "^2.1.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.0.2",
"@angular/cli": "~12.0.2",
"@angular/compiler-cli": "~12.0.2",
"@types/jest": "^26.0.20",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"coveralls": "^3.1.0",
"eslint": "^7.21.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"ng-packagr": "^12.0.2",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "~4.2.4"
}
}