-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
187 lines (187 loc) · 7.65 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"name": "angular-skeleton",
"version": "1.3.0",
"description": "Angular Skeleton",
"author": "Borja Paz Rodríguez (@borjapazr)",
"license": "MIT",
"keywords": [
"frontend",
"angular",
"skeleton"
],
"repository": "https://github.com/borjapazr/angular-skeleton",
"scripts": {
"start:dev": "ng serve --configuration development --port 4200 --open",
"start:prod": "ng serve --configuration production --port 4300 --open",
"start:ssr:dev": "ng run angular-skeleton:serve-ssr:development --port 4201 --open",
"start:ssr:prod": "ng run angular-skeleton:serve-ssr:production --port 4301 --open",
"build:dev": "rimraf dist && ng build --configuration development",
"build:prod": "rimraf dist && ng build --configuration production && npm run build:optimize",
"build:ssr:dev": "rimraf dist && ng build --configuration development && ng run angular-skeleton:server:development",
"build:ssr:prod": "rimraf dist && ng build --configuration production && ng run angular-skeleton:server:production && npm run build:optimize",
"build:prerender:dev": "rimraf dist && ng run angular-skeleton:prerender:development",
"build:prerender:prod": "rimraf dist && ng run angular-skeleton:prerender:production && npm run build:optimize",
"build:optimize": "run-s optimize:* && ngsw-config dist/browser ./ngsw-config.json",
"optimize:i18n": "transloco-optimize dist/browser/assets/i18n",
"serve:pwa": "http-server -p 4400 -P http://localhost:4400? dist/browser -o",
"serve:ssr": "node dist/server/main.js",
"i18n:extract": "transloco-keys-manager extract",
"i18n:find": "transloco-keys-manager find",
"check:types": "tsc --pretty --noEmit && tsc --project cypress/tsconfig.json --pretty --noEmit",
"check:format": "prettier --check .",
"check:lint": "eslint . --ext .js,.ts --color",
"check:html": "htmlhint .",
"check:scss": "stylelint 'src/**/*.{css,scss}' --color",
"check:spelling": "cspell --config=.cspell.json \"{README.md,TODO.md,.github/*.md,src/**/*.ts,src/**/*.json}\"",
"check:i18n": "transloco-validator src/assets/i18n/*.json",
"check:staged": "lint-staged",
"fix:format": "prettier --check --write --ignore-unknown .",
"fix:lint": "npm run check:lint -- --fix",
"fix:scss": "npm run check:scss -- --fix",
"test": "cross-env NODE_ENV=test jest --verbose --colors --runInBand",
"test:spec": "npm run test -- --testPathPattern=spec",
"test:unit": "npm run test -- --testPathPattern=unit",
"test:int": "npm run test -- --testPathPattern=integration",
"e2e": "ng e2e",
"e2e:run": "ng run angular-skeleton:cypress-run",
"e2e:open": "ng run angular-skeleton:cypress-open",
"e2e:coverage:view": "http-server -p 9004 ./coverage-e2e/lcov-report -o",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage --silent",
"test:coverage:view": "http-server -p 9003 ./coverage/lcov-report -o",
"reset-hard": "git clean -dfx && git reset --hard && npm install",
"version": "standard-version -t",
"prepare-release": "run-s reset-hard version",
"commit": "cz",
"update-deps": "npm-check-updates -u",
"prepare": "husky install"
},
"dependencies": {
"@angular/animations": "^15.2.3",
"@angular/common": "^15.2.3",
"@angular/compiler": "^15.2.3",
"@angular/core": "^15.2.3",
"@angular/forms": "^15.2.3",
"@angular/platform-browser": "^15.2.3",
"@angular/platform-browser-dynamic": "^15.2.3",
"@angular/platform-server": "^15.2.3",
"@angular/router": "^15.2.3",
"@angular/service-worker": "^15.2.3",
"@ngneat/transloco": "^4.2.6",
"@ngneat/transloco-locale": "^4.0.0",
"@ngneat/transloco-messageformat": "^4.1.0",
"@ngneat/transloco-preload-langs": "^4.0.1",
"@ngneat/until-destroy": "^9.2.3",
"@nguniversal/express-engine": "^15.2.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"domino": "^2.1.6",
"dotenv-defaults": "^5.0.2",
"dotenv-expand": "^10.0.0",
"endent": "^2.1.0",
"express": "^4.18.2",
"fast-deep-equal": "^3.1.3",
"figlet": "^1.5.2",
"http-status-codes": "^2.2.0",
"intersection-observer": "^0.12.2",
"just-is-empty": "^3.3.0",
"messageformat": "^2.3.0",
"ng-lazyload-image": "^9.1.3",
"ngx-hover-preload": "^0.0.3",
"ngx-isr": "^0.5.1",
"ngx-quicklink": "0.4.1",
"node-fetch": "^3.3.1",
"rxjs": "~7.8.0",
"tslib": "^2.5.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-builders/jest": "^15.0.0",
"@angular-devkit/build-angular": "^15.2.3",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "~15.2.3",
"@angular/compiler-cli": "^15.2.3",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@cspell/dict-bash": "^4.1.1",
"@cspell/dict-companies": "^3.0.9",
"@cspell/dict-es-es": "^2.2.4",
"@cspell/dict-filetypes": "^3.0.0",
"@cspell/dict-html": "^4.0.3",
"@cspell/dict-lorem-ipsum": "^3.0.0",
"@cspell/dict-node": "^4.0.2",
"@cspell/dict-npm": "^5.0.5",
"@cspell/dict-software-terms": "^3.1.6",
"@cspell/dict-typescript": "^3.1.1",
"@cypress/code-coverage": "^3.10.0",
"@cypress/schematic": "^2.5.0",
"@ngneat/transloco-keys-manager": "^3.6.2",
"@ngneat/transloco-optimize": "^3.0.2",
"@ngneat/transloco-validator": "^3.0.1",
"@nguniversal/builders": "^15.2.0",
"@skyux-sdk/istanbul-instrumenter-loader": "^4.0.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/dotenv-defaults": "^2.0.1",
"@types/express": "^4.17.17",
"@types/figlet": "^1.5.5",
"@types/jest": "^28.1.3",
"@types/node": "^14.15.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"autoprefixer": "^10.4.14",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cspell": "^6.30.2",
"cypress": "^12.8.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unused-imports": "^2.0.0",
"get-tsconfig": "^4.4.0",
"htmlhint": "^1.1.4",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jest": "^28.1.3",
"jest-extended": "^3.2.4",
"jest-preset-angular": "^12.2.5",
"lint-staged": "^13.2.0",
"ngx-build-plus": "^15.0.0",
"npm-check-updates": "^16.7.13",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"prettier": "^2.8.6",
"prettier-eslint": "^15.0.1",
"prettier-plugin-tailwindcss": "^0.2.5",
"rimraf": "^4.4.0",
"standard-version": "^9.5.0",
"stylelint": "^15.3.0",
"stylelint-config-recommended-scss": "^9.0.1",
"stylelint-config-standard": "^31.0.0",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-no-unsupported-browser-features": "^6.1.0",
"stylelint-prettier": "^3.0.0",
"stylelint-scss": "^4.5.0",
"tailwindcss": "^3.2.7",
"ts-jest": "^28.0.8",
"tsc-alias": "^1.8.4",
"typescript": "~4.9.5"
}
}