-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
129 lines (129 loc) · 4.88 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
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
{
"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/inventer99"
},
{
"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": {
"ng": "ng",
"start": "find ./dist/ngrx-auto-entity -type f -name \"*.__ivy_ngcc_bak\" -exec rm {} \\; && rm -rf ./dist/ngrx-auto-entity/__ivy_ngcc__ && concurrently --prefix-colors white.bgBlue,white.bgRed --names angular,json-server --kill-others \"npm run serve-proxy\" \"npm run json-server\"",
"serve": "ng serve test-app",
"serve:prod": "ng serve test-app --configuration production",
"serve-proxy": "ng serve test-app --proxy-config proxy.conf.json",
"build": "ng build test-app --configuration production",
"build:watch": "ng build test-app --configuration production --watch",
"build:lib:ae": "ng build ngrx-auto-entity --configuration production",
"build:lib:ae:watch": "ng build ngrx-auto-entity --configuration production --watch",
"build:lib:aes": "ng build ngrx-auto-entity-service --configuration production",
"build:lib:aes:watch": "ng build ngrx-auto-entity-service --configuration production --watch",
"build:ci": "ng build ngrx-auto-entity --configuration production",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --runInBand --testResultsProcessor='jest-junit'",
"lint": "ng lint ngrx-auto-entity",
"lint:fix": "ng lint ngrx-auto-entity --fix",
"json-server": "json-server --watch data/db.json --routes data/routes.json",
"link": "ng build ngrx-auto-entity && npm link ./dist/ngrx-auto-entity && ng build ngrx-auto-entity-service && npm link ./dist/ngrx-auto-entity-service",
"link:ci": "ng build ngrx-auto-entity && sudo npm link ./dist/ngrx-auto-entity && ng build ngrx-auto-entity-service && sudo npm link ./dist/ngrx-auto-entity-service",
"postinstall": "if test \"$NODE_ENV\" = \"ci\" ; then npm run link:ci ; else npm run link ; fi",
"prettier": "prettier --write \"./projects/**/*.ts\"",
"clean:ivy": "find ./dist/ngrx-auto-entity -type f -name \"*.__ivy_ngcc_bak\" -exec rm {} \\; && rm -rf ./dist/ngrx-auto-entity/__ivy_ngcc__"
},
"dependencies": {
"@angular-devkit/core": "~13.3.0",
"@angular/animations": "~13.3.0",
"@angular/cdk": "~13.3.0",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/forms": "~13.3.0",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"@briebug/ngrx-auto-entity": "file:./projects/ngrx-auto-entity",
"@briebug/ngrx-auto-entity-service": "file:./projects/ngrx-auto-entity-service",
"@ngrx/effects": "^13.2.0",
"@ngrx/router-store": "^13.2.0",
"@ngrx/store": "^13.2.0",
"rxjs": "~7.5.6",
"tslib": "^2.3.0",
"uuidv4": "^5.0.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.9",
"@angular-eslint/builder": "13.5.0",
"@angular-eslint/eslint-plugin": "13.5.0",
"@angular-eslint/eslint-plugin-template": "13.5.0",
"@angular-eslint/schematics": "13.5.0",
"@angular-eslint/template-parser": "13.5.0",
"@angular/cli": "~13.3.9",
"@angular/compiler-cli": "~13.3.0",
"@angular/language-service": "~13.3.0",
"@ngrx/store-devtools": "^13.2.0",
"@types/jest": "^28.1.8",
"@types/node": "~16.11.49",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"acorn": "6.4.1",
"concurrently": "^3.6.1",
"eslint": "^8.17.0",
"faker": "^5.5.3",
"husky": "^0.14.3",
"jasmine-marbles": "^0.9.2",
"jest": "^28.1.3",
"jest-extended": "^3.0.2",
"jest-jasmine2": "^28.1.3",
"jest-junit": "^8.0.0",
"jest-preset-angular": "^12.2.0",
"json-server": "^0.17.0",
"lint-staged": "^13.0.3",
"ng-packagr": "^13.3.1",
"prettier": "~2.7.1",
"pretty-quick": "^3.1.3",
"ts-jest": "^28.0.8",
"ts-node": "~10.9.1",
"tslib": "^2.4.0",
"typescript": "~4.6.4"
},
"lint-staged": {
"projects/test-app/**/*.ts": [
"tslint --config tslint.json --project tsconfig.json --fix",
"git add"
],
"projects/ngrx-auto-entity/src/lib/**/*.ts": [
"tslint --config tslint.json --project tsconfig.json --fix",
"git add"
]
}
}