-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·92 lines (92 loc) · 2.73 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
{
"name": "imran-khan",
"version": "1.3.3",
"author": "Imran Khan",
"private": true,
"scripts": {
"ng": "ng",
"start": "ng serve --port 1500",
"build": "ng build",
"serve.app.next": "ng serve -c next --port 2000",
"build.app.next": "ng build -c next",
"serve.app.prod": "ng serve -c prod --port 3000",
"build.app.prod": "ng build -c prod",
"lint": "ng lint",
"lint:es": "eslint 'src/**/*.ts' --quiet --fix",
"lint:scss": "stylelint 'src/**/*.scss' --syntax scss",
"pretty:check": "prettier --check 'src/**/*.{ts,json}'",
"pretty:apply": "prettier --write 'src/**/*.{ts,json}'",
"commit": "git-cz",
"release": "standard-version"
},
"dependencies": {
"@angular/animations": "^11.1.0",
"@angular/common": "^11.1.0",
"@angular/compiler": "^11.1.0",
"@angular/core": "^11.1.0",
"@angular/fire": "^6.1.4",
"@angular/forms": "^11.1.0",
"@angular/platform-browser": "^11.1.0",
"@angular/platform-browser-dynamic": "^11.1.0",
"@angular/router": "^11.1.0",
"@fortawesome/angular-fontawesome": "^0.8.1",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-regular-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@imransilvake/scss-framework": "^2.3.2",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"firebase": "^8.2.4",
"hammerjs": "^2.0.8",
"moment": "^2.29.1",
"rxjs": "^6.6.3",
"tslib": "^2.1.0",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1101.1",
"@angular-eslint/builder": "1.1.0",
"@angular-eslint/eslint-plugin": "1.1.0",
"@angular-eslint/eslint-plugin-template": "1.1.0",
"@angular-eslint/schematics": "^1.1.0",
"@angular-eslint/template-parser": "1.1.0",
"@angular/cli": "~11.1.1",
"@angular/compiler-cli": "^11.1.0",
"@angular/language-service": "^11.1.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "~14.14.22",
"@typescript-eslint/eslint-plugin": "4.14.0",
"@typescript-eslint/parser": "4.14.0",
"codelyzer": "^6.0.1",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.18.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "2.2.1",
"standard-version": "^9.1.0",
"stylelint": "^13.9.0",
"stylelint-order": "^4.1.0",
"ts-node": "~9.1.1",
"typescript": "~4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,json}": "prettier --write",
"*.ts": "eslint --fix",
"*.scss": "stylelint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}