-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.33 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.33 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
{
"name": "app-rsschool-clone",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"ng": "ng",
"start": "ng serve",
"prebuild": "echo \"export const environment = { production: false, firebaseConfig: { apiKey: '${FIREBASE_API_KEY}', authDomain: '${FIREBASE_AUTH_DOMAIN}', projectId: '${FIREBASE_PROJECT_ID}', storageBucket: '${FIREBASE_STORAGE_BUCKET}', messagingSenderId: '${FIREBASE_MESSAGING_SENDER_ID}', appId: '${FIREBASE_APP_ID}' } };\" > src/environments/environment.ts && echo \"export const environment = { production: true, firebaseConfig: { apiKey: '${FIREBASE_API_KEY}', authDomain: '${FIREBASE_AUTH_DOMAIN}', projectId: '${FIREBASE_PROJECT_ID}', storageBucket: '${FIREBASE_STORAGE_BUCKET}', messagingSenderId: '${FIREBASE_MESSAGING_SENDER_ID}', appId: '${FIREBASE_APP_ID}' } };\" > src/environments/environment.prod.ts",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:e2e": "playwright test",
"test:e2e:report": "playwright show-report",
"test:ci": "ng test --no-watch --browsers=ChromeHeadless",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"prepare": "husky",
"lint:check": "ng lint",
"lint:fix": "ng lint --fix",
"lint:styles": "stylelint '**/*.scss' --fix"
},
"lint-staged": {
"*.{ts,js,json,html,md}": [
"npx prettier --write"
],
"*.{ts,html}": [
"npx eslint --fix"
],
"*.{scss,css}": [
"npx stylelint --fix",
"npx prettier --write"
]
},
"dependencies": {
"@angular/cdk": "20.2.7",
"@angular/common": "20.3.2",
"@angular/compiler": "20.3.2",
"@angular/core": "20.3.2",
"@angular/fire": "20.0.1",
"@angular/forms": "^20.3.2",
"@angular/material": "20.2.7",
"@angular/platform-browser": "20.3.2",
"@angular/platform-browser-dynamic": "20.3.2",
"@angular/router": "^20.3.2",
"@ngrx/effects": "20.0.1",
"@ngrx/store": "^20.0.1",
"@ngrx/store-devtools": "20.0.1",
"@swimlane/ngx-charts": "^23.0.1",
"firebase": "^12.3.0",
"firebase-admin": "^13.5.0",
"ngx-markdown": "^20.1.0",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-eslint/builder": "20.3.0",
"@angular/build": "^20.3.3",
"@angular/cli": "^20.3.3",
"@angular/compiler-cli": "^20.3.2",
"@eslint/js": "^9.36.0",
"@playwright/test": "^1.55.1",
"@types/jasmine": "~5.1.9",
"@types/node": "^24.6.2",
"angular-eslint": "20.3.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^60.7.1",
"eslint-plugin-playwright": "^2.2.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-unicorn": "^61.0.2",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jasmine-core": "~5.11.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"stylelint": "^16.24.0",
"stylelint-config-standard-scss": "^16.0.0",
"stylelint-prettier": "^5.0.3",
"typescript": "~5.9.3",
"typescript-eslint": "8.45.0"
}
}