-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
72 lines (72 loc) · 2.35 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
{
"name": "ngrx-wieder",
"version": "0.0.0",
"scripts": {
"prebuild": "cpx README.md projects/ngrx-wieder",
"build": "ng build --configuration production",
"test": "ng test --watch false",
"test:watch": "ng test",
"test:ci": "ng test --watch false --code-coverage",
"lint": "ng lint",
"e2e": "ng e2e",
"bump": "standard-version",
"prerelease": "npm ci && npm run lint && npm run test && npm run build",
"release": "npm publish --folder ./dist/ngrx-wieder"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.1.4",
"@angular/common": "^18.1.4",
"@angular/compiler": "^18.1.4",
"@angular/core": "^18.1.4",
"@angular/forms": "^18.1.4",
"@angular/platform-browser": "^18.1.4",
"@angular/platform-browser-dynamic": "^18.1.4",
"@angular/router": "^18.1.4",
"@ngrx/store": "^18.0.2",
"core-js": "^2.5.4",
"immer": "^10.0.2",
"rxjs": "^6.6.7",
"tslib": "^2.3.1",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.4",
"@angular-devkit/core": "^18.1.4",
"@angular-eslint/builder": "18.3.0",
"@angular-eslint/eslint-plugin": "18.3.0",
"@angular-eslint/eslint-plugin-template": "18.3.0",
"@angular-eslint/schematics": "18.3.0",
"@angular-eslint/template-parser": "18.3.0",
"@angular/cli": "^18.1.4",
"@angular/compiler-cli": "^18.1.4",
"@angular/language-service": "^18.1.4",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/travis-cli": "^13.1.0",
"@types/jasmine": "^3.6.11",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^12.20.20",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"cpx": "^1.5.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"husky": "^4.3.8",
"jasmine-core": "~3.8",
"jasmine-spec-reporter": "~6.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "^18.1.0",
"protractor": "~7.0.0",
"standard-version": "^8.0.2",
"ts-node": "~9.1.1",
"typescript": "~5.5.4"
}
}