-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
96 lines (96 loc) · 3.46 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
{
"name": "ngx-starter",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.conf.json",
"start:prod": "ng serve --proxy-config proxy.conf.json --configuration production",
"build": "npm run lint && ng build",
"build:prod": "npm run lint && ng build --configuration production",
"build:bundle-report": "ng build --configuration development --stats-json && webpack-bundle-analyzer dist/ngx-starter/stats.json",
"build:bundle-report:prod": "ng build --configuration production --stats-json && webpack-bundle-analyzer dist/ngx-starter/stats.json",
"watch": "ng build --watch --configuration development",
"test": "ng test --code-coverage",
"test:ci": "ng test --watch=false --code-coverage",
"lint": "ng lint && stylelint './src/**/*.scss'",
"lint:fix": "ng lint --fix && stylelint './src/**/*.scss' --fix",
"prepare": "husky"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.0",
"@angular/cdk": "^18.2.0",
"@angular/common": "^18.2.0",
"@angular/compiler": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/forms": "^18.2.0",
"@angular/platform-browser": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@angular/router": "^18.2.0",
"@fortawesome/fontawesome-free": "^6.2.1",
"@ng-bootstrap/ng-bootstrap": "~17.0.0",
"@ng-select/ng-select": "~13.7.0",
"@ng-web-apis/common": "^3.0.6",
"@ng-web-apis/storage": "^3.0.6",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"lodash": "~4.17.21",
"luxon": "~3.2.1",
"ngxtension": "^4.0.0",
"roboto-fontface": "0.10",
"rxjs": "~7.8.1",
"socket.io-client": "^2.2.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.4",
"@angular-eslint/builder": "18.3.0",
"@angular-eslint/eslint-plugin": "18.3.0",
"@angular-eslint/eslint-plugin-template": "18.3.0",
"@angular-eslint/schematics": "18.3.0",
"@angular-eslint/template-parser": "18.3.0",
"@angular/cli": "~18.2.0",
"@angular/compiler-cli": "^18.2.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jasmine": "~4.3.0",
"@types/lodash": "4.14",
"@types/luxon": "^1.27.1",
"@types/node": "^12.11.1",
"@types/socket.io-client": "1.4",
"@types/webpack": "4.41",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.9.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-deprecation": "^1.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-rxjs": "^5.0.3",
"eslint-plugin-rxjs-angular": "^2.0.1",
"husky": "^9.0.11",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"karma-junit-reporter": "~2.0.0",
"lint-staged": "^15.2.9",
"prettier": "~3.2.0",
"prettier-plugin-organize-attributes": "^1.0.0",
"stylelint": "15.10.2",
"stylelint-config-recommended-scss": "12.0.0",
"stylelint-prettier": "4.0.1",
"stylelint-scss": "5.0.1",
"ts-node": "~8.3.0",
"typescript": "~5.4.5",
"webpack-bundle-analyzer": "4.5.0"
},
"lint-staged": {
"*.{scss,css}": "stylelint --fix",
"*.ts": "eslint --fix",
"*.html": "eslint --fix"
}
}