forked from S-Johny/noname
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.38 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
{
"name": "noname",
"version": "0.0.0",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:test": "ng build --configuration development --output-path dist-test",
"build:prod": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"prepare": "husky install",
"prettier": "pretty-quick",
"deploy:test": "firebase deploy --only hosting:app-test",
"deploy:prod": "firebase deploy --only hosting:app",
"deploy": "firebase deploy"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.2.3",
"@angular/cdk": "^19.2.5",
"@angular/common": "^19.2.3",
"@angular/compiler": "^19.2.3",
"@angular/core": "^19.2.3",
"@angular/fire": "^19.0.0",
"@angular/forms": "^19.2.3",
"@angular/material": "^19.2.5",
"@angular/platform-browser": "^19.2.3",
"@angular/platform-browser-dynamic": "^19.2.3",
"@angular/router": "^19.2.3",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.4",
"@angular/cli": "~19.2.4",
"@angular/compiler-cli": "^19.2.3",
"husky": "^8.0.3",
"lint-staged": "^15.5.0",
"prettier": "3.5.3",
"typescript": "~5.8.2"
}
}