-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
78 lines (78 loc) · 2.75 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
{
"name": "ngxs-firestore",
"scripts": {
"start": "ng serve",
"build": "ng build ngxs-firestore --configuration production && yarn copy-readme",
"build-integration": "ng build modular --configuration production",
"copy-readme": "ts-node --project tsconfig.tools.json ./tools/copy-readme",
"test": "jest --config ./jest.config.js",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --config ./jest.config.js",
"test:ci": "jest --config ./jest.config.js --collect-coverage",
"format": "prettier --write \"{src,integration,tools}/**/*.{html,scss,json,ts}\"",
"format:check": "prettier \"{src,integration,tools}/**/*.{html,scss,json,ts}\"",
"lint": "eslint -c .eslintrc.js --ext .ts",
"release": "standard-version --release-as patch"
},
"dependencies": {
"@angular/animations": "^18.0.5",
"@angular/common": "^18.0.5",
"@angular/compiler": "^18.0.5",
"@angular/core": "^18.0.5",
"@angular/fire": "^18.0.1",
"@angular/forms": "^18.0.5",
"@angular/platform-browser": "^18.0.5",
"@angular/platform-browser-dynamic": "^18.0.5",
"@angular/router": "^18.0.5",
"@angular/service-worker": "^18.0.5",
"@ngxs-labs/actions-executing": "^1.0.5",
"@ngxs/logger-plugin": "^18.0.0",
"@ngxs/store": "^18.0.0",
"bootstrap": "^5.0.0",
"chance": "^1.1.4",
"core-js": "^3.3.2",
"firebase": "^10.9.0",
"rxfire": "^6.0.0",
"rxjs": "^7.8.1",
"tslib": "^2.0.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/architect": "0.1800.6",
"@angular-devkit/build-angular": "^18.0.6",
"@angular-eslint/eslint-plugin": "^13.0.1",
"@angular/cli": "18.0.6",
"@angular/compiler-cli": "^18.0.5",
"@angular/language-service": "^18.0.5",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-angular": "^8.1.0",
"@commitlint/config-conventional": "^8.3.4",
"@ngxs/devtools-plugin": "^18.0.0",
"@types/chance": "^1.0.7",
"@types/jasmine": "~3.6.0",
"@types/jest": "^27.4.0",
"@types/node": "^12.11.1",
"@types/semver": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/eslint-plugin-tslint": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"angular-http-server": "^1.9.0",
"codelyzer": "^6.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^3.0.4",
"jest": "^29.5.0",
"jest-preset-angular": "^14.1.1",
"lint-staged": "^9.2.5",
"ng-packagr": "^18.0.0",
"prettier": "^1.18.2",
"standard-version": "^8.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^8.3.0",
"typescript": "~5.4.5"
},
"resolutions": {
"**/**/lodash": "^4.17.19",
"**/**/dot-prop": "^5.1.1"
}
}