-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 5.2 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 5.2 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
{
"name": "angular-boilerplate",
"version": "3.1.9",
"repository": {
"url": "https://github.com/Alessandroinfo/angular-boilerplate",
"type": "git"
},
"license": "MIT",
"private": false,
"engines": {
"node": "14.x || 16.x"
},
"scripts": {
"ng-local": "ng",
"start": "ng serve --o --port 3001",
"start-generated": "npm run generate-asset && ng serve --o --port 3001",
"start-dist": "cd dist/browser && http-server -c-1 -o .",
"build": "ng build",
"build:app-shell:demo": "ng run angular-boilerplate:app-shell:demo",
"build-start-open:app-shell:demo": "npm run build:app-shell:demo && npm run start-dist",
"build:app-shell:production": "ng run angular-boilerplate:app-shell:production",
"bundle-analyze": "ng build -c test --source-map=true && source-map-explorer dist/browser/*.js",
"compress-dist": "gzipper compress --verbose --remove-larger --gzip-level 9 ./dist/browser ./dist-compressed",
"generate-asset": "pwa-asset-generator src/assets/imgs/logo.svg src/assets/icons/generated -t png -f true -i src/index.html -m src/manifest.webmanifest --path-override assets/icons/generated --opaque false -p 0 --mstile",
"firebase-logout": "firebase logout",
"firebase-login": "firebase login",
"firebase-init": "firebase init",
"firebase-deploy": "firebase deploy",
"deploy-app": "npm run generate-asset && npm run format-index && npm run build && npm run firebase-deploy",
"deploy-app-shell:demo": "npm run build:app-shell:demo && npm run firebase-deploy",
"deploy-app-shell:production": "npm run build:app-shell:production && npm run firebase-deploy",
"cordova-install": "npm install -g cordova",
"cordova-init": "cordova create cordova",
"cordova-add:osx": "cd ./cordova && cordova platform add osx ios android",
"cordova-add:windows": "cd ./cordova && cordova platform add wp8 windows android",
"cordova-build-production": "ng build -c cordova-production --base-href . --output-path cordova/www/",
"cordova-build-platforms": "cd ./cordova && cordova build",
"cordova-run": "cd ./cordova && cordova run",
"format-code": "prettier --write './{src,e2e,scripts}/**/*.{js,jsx,json,ts,tsx,html,scss}' --ignore-path .prettierignore",
"format-index": "prettier --write 'src/index.html' --ignore-path .prettierignore",
"npm-check-update": "ncu",
"npm-check-unused-pckg": "depcheck",
"lint": "ng lint",
"test": "ng test",
"e2e": "ng e2e",
"cypress:install": "cypress install",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"prepare": "husky install"
},
"dependencies": {
"@angular/animations": "^15.2.9",
"@angular/cdk": "^15.2.9",
"@angular/common": "^15.2.9",
"@angular/compiler": "^15.2.9",
"@angular/core": "^15.2.9",
"@angular/forms": "^15.2.9",
"@angular/material": "^15.2.9",
"@angular/platform-browser": "^15.2.9",
"@angular/platform-browser-dynamic": "^15.2.9",
"@angular/platform-server": "^15.2.9",
"@angular/router": "^15.2.9",
"@angular/service-worker": "^15.2.9",
"@ngneat/until-destroy": "^9.2.1",
"rxjs": "~7.5.5",
"tslib": "^2.4.0",
"zone.js": "~0.11.6"
},
"devDependencies": {
"@angular-builders/custom-webpack": "~15.0.0",
"@angular-devkit/build-angular": "~15.2.9",
"@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.9",
"@angular/compiler-cli": "^15.1.2",
"@awesome-cordova-plugins/core": "^5.43.0",
"@awesome-cordova-plugins/keyboard": "^5.43.0",
"@awesome-cordova-plugins/splash-screen": "^5.43.0",
"@awesome-cordova-plugins/status-bar": "^5.43.0",
"@cypress/schematic": "~2.5.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"@types/jasmine": "~4.0.3",
"@types/jest": "^28.1.1",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "~5.53.0",
"@typescript-eslint/parser": "~5.53.0",
"autoprefixer": "^10.4.7",
"cypress": "~12.17.2",
"depcheck": "^1.4.3",
"eslint": "~8.34.0",
"eslint-plugin-import": "~2.27.5",
"eslint-plugin-jsdoc": "~40.0.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"firebase": "^9.8.3",
"firebase-tools": "^11.22.0",
"gzipper": "^7.1.0",
"http-server": "^14.1.1",
"husky": "^8.0.1",
"jasmine-core": "~4.2.0",
"jest": "^28.1.1",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"lint-staged": "^13.0.2",
"ng-tailwindcss": "~2.3.4",
"ngx-spec": "^2.1.5",
"npm-check-updates": "^16.10.15",
"postcss": "^8.4.14",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"pwa-asset-generator": "^6.3.1",
"source-map-explorer": "^2.5.2",
"tailwind-children": "^0.5.0",
"tailwindcss": "^3.1.3",
"ts-jest": "^28.0.5",
"ts-node": "~10.8.1",
"typescript": "~4.8.2",
"webpack": "~5.78.0"
}
}