-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
{
"name": "@deejayy/api-caller",
"version": "18.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "npx jest",
"lint": "ng lint",
"e2e": "ng e2e",
"prerelease": "ng lint && npx jest && ng build --configuration production api-caller",
"release": "npm publish dist/api-caller/ --access public"
},
"private": false,
"np": {
"contents": "dist/api-caller"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@angular/animations": "^18",
"@angular/common": "^18",
"@angular/compiler": "^18",
"@angular/core": "^18",
"@angular/forms": "^18",
"@angular/platform-browser": "^18",
"@angular/platform-browser-dynamic": "^18",
"@angular/router": "^18",
"@ngrx/effects": "^18",
"@ngrx/store": "^18",
"@ngrx/store-devtools": "^18",
"immer": "^10",
"rxjs": "^7",
"tslib": "^2.3.0",
"zone.js": "~0.14.7"
},
"devDependencies": {
"@angular-builders/jest": "^18.0.0-beta.3",
"@angular-devkit/build-angular": "^18",
"@angular-eslint/builder": "^18",
"@angular-eslint/eslint-plugin": "^18",
"@angular-eslint/eslint-plugin-template": "^18",
"@angular-eslint/schematics": "^18",
"@angular-eslint/template-parser": "^18",
"@angular/cli": "^18",
"@angular/compiler-cli": "^18",
"@types/jest": "^29",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"eslint": "^8",
"eslint-config-airbnb-base": "^15",
"eslint-config-airbnb-typescript": "^18",
"eslint-plugin-import": "^2",
"eslint-plugin-jsdoc": "^48",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^29",
"jest-marbles": "^3",
"jest-preset-angular": "^14",
"ng-packagr": "^18",
"ts-node": "^10",
"typescript": "~5.4.2"
}
}