-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 4.95 KB
/
Copy pathpackage.json
File metadata and controls
142 lines (142 loc) · 4.95 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "ngrx-auto-entity-app",
"private": true,
"version": "0.0.0",
"license": "SEE LICENSE IN LICENSE.md",
"author": {
"name": "BrieBug",
"url": "https://briebug.com"
},
"contributors": [
{
"name": "Jon Rista",
"url": "https://github.com/jrista"
},
{
"name": "Cole Sanders",
"url": "https://github.com/colesanders"
},
{
"name": "Stratton Whisler",
"url": "https://github.com/strattonwhisler"
},
{
"name": "Kevin Schuchard",
"url": "https://github.com/schuchard"
},
{
"name": "Patrice Paquette",
"url": "https://github.com/patpaquette"
},
{
"name": "Jesse Wells",
"url": "https://github.com/Wells-Codes"
}
],
"scripts": {
"nx": "nx",
"start": "concurrently --prefix-colors white.bgBlue,white.bgRed --names angular,json-server --kill-others \"npm run serve\" \"npm run json-server\"",
"serve": "nx run test-app:serve --proxy-config proxy.conf.json",
"serve:prod": "nx run test-app:serve:production --proxy-config proxy.conf.json",
"build": "nx run-many --target build",
"build:app": "nx run test-app:build:production",
"build:app:watch": "nx run test-app:build:production --watch",
"build:lib:ae": "nx run ngrx-auto-entity:build:production",
"build:lib:ae:watch": "nx run ngrx-auto-entity:build:production --watch",
"build:lib:aes": "nx run ngrx-auto-entity-service:build:production",
"build:lib:aes:watch": "nx run ngrx-auto-entity-service:build:production --watch",
"build:ci": "nx run-many --target build --configuration production",
"test": "nx run-many --target test",
"test:coverage": "nx run-many --target test --configuration coverage",
"test:ci": "nx run-many --target test --configuration ci",
"test:lib:ae": "nx run ngrx-auto-entity:test",
"test:lib:ae:watch": "nx run ngrx-auto-entity:test --watch",
"test:lib:ae:coverage": "nx run ngrx-auto-entity:test:coverage",
"test:lib:ae:ci": "nx run ngrx-auto-entity:test:ci",
"test:lib:aes": "nx run ngrx-auto-entity-service:test",
"test:lib:aes:watch": "nx run ngrx-auto-entity-service:test --watch",
"test:lib:aes:coverage": "nx run ngrx-auto-entity-service:test:coverage",
"test:lib:aes:ci": "nx run ngrx-auto-entity-service:test:ci",
"lint": "nx run-many --target lint",
"lint:fix": "nx run-many --target lint --fix",
"lint:lib:ae": "nx run ngrx-auto-entity:lint",
"lint:lib:ae:fix": "nx run ngrx-auto-entity:lint --fix",
"lint:lib:aes": "nx run ngrx-auto-entity-service:lint",
"lint:lib:aes:fix": "nx run ngrx-auto-entity-service:lint --fix",
"json-server": "json-server --watch data/db.json --routes data/routes.json",
"prettier": "prettier --write \"./projects/**/*.ts\"",
"prepare": "husky"
},
"dependencies": {
"@angular/animations": "^21.2.4",
"@angular/cdk": "^21.2.2",
"@angular/common": "^21.2.4",
"@angular/compiler": "^21.2.4",
"@angular/core": "^21.2.4",
"@angular/forms": "^21.2.4",
"@angular/platform-browser": "^21.2.4",
"@angular/platform-browser-dynamic": "^21.2.4",
"@angular/router": "^21.2.4",
"@ngrx/effects": "^21.0.1",
"@ngrx/router-store": "^21.0.1",
"@ngrx/store": "^21.0.1",
"rxjs": "~7.8.2",
"tslib": "^2.3.1",
"uuidv4": "^5.0.1",
"zone.js": "~0.16.1"
},
"devDependencies": {
"@angular-devkit/core": "^21.2.2",
"@angular-devkit/schematics": "^21.2.2",
"@angular/build": "^21.2.2",
"@angular/cli": "^21.2.2",
"@angular/compiler-cli": "^21.2.4",
"@angular/language-service": "^21.2.4",
"@eslint/eslintrc": "^2.1.4",
"@eslint/js": "^9.39.4",
"@ngrx/store-devtools": "^21.0.1",
"@nx/angular": "~22.6.0",
"@nx/eslint": "~22.6.0",
"@nx/eslint-plugin": "~22.6.0",
"@nx/jest": "~22.6.0",
"@nx/js": "~22.6.0",
"@nx/web": "~22.6.0",
"@nx/workspace": "~22.6.0",
"@schematics/angular": "^21.2.2",
"@swc-node/register": "~1.11.1",
"@swc/core": "~1.15.18",
"@swc/helpers": "~0.5.19",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.15",
"@typescript-eslint/utils": "8.57.0",
"angular-eslint": "^21.3.1",
"autoprefixer": "^10.4.27",
"concurrently": "^9.2.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest-extended": "^3.0.1",
"faker": "^5.5.3",
"husky": "^9.1.7",
"jasmine-marbles": "^0.9.2",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-extended": "^7.0.0",
"jest-jasmine2": "^30.3.0",
"jest-junit": "^16.0.0",
"jest-preset-angular": "^16.1.1",
"jest-util": "^30.3.0",
"json-server": "^0.17.4",
"jsonc-eslint-parser": "^2.4.2",
"lint-staged": "^16.4.0",
"ng-packagr": "^21.2.0",
"nx": "~22.6.0",
"postcss": "^8.5.14",
"postcss-url": "~10.1.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"ts-jest": "29.4.6",
"ts-node": "~10.9.2",
"typescript": "~5.9.3",
"typescript-eslint": "8.57.0"
}
}