-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.35 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
{
"name": "money-manager-angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest",
"test:watch": "jest --watch",
"lint": "ng lint && npm run lint:styles",
"cypress:open": "cypress open",
"format:check": "prettier --config ./.prettierrc --list-different \"src/{app,environments,assets}/**/*{.ts,.js,.json,.css,.scss}\""
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.0",
"@angular/cdk": "^15.2.1",
"@angular/common": "^15.2.0",
"@angular/compiler": "^15.2.0",
"@angular/core": "^15.2.0",
"@angular/fire": "^7.5.0",
"@angular/forms": "^15.2.0",
"@angular/material": "^15.2.1",
"@angular/platform-browser": "^15.2.0",
"@angular/platform-browser-dynamic": "^15.2.0",
"@angular/router": "^15.2.0",
"@types/node": "^20.2.5",
"chart.js": "^4.3.0",
"currency-converter": "file:../currency-converter-lib/dist/currency-converter",
"currency-converter-lib": "^0.2.0",
"firebase": "^9.15.0",
"material-icons": "^1.13.3",
"rxjs": "~7.8.0",
"ts-node": "^10.9.1",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.0",
"@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.0",
"@angular/compiler-cli": "^15.2.0",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"cypress": "^12.15.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-preset-angular": "^13.1.1",
"jest-zone-patch": "^0.0.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.6",
"prettier-eslint": "^15.0.1",
"pretty-quick": "^3.1.3",
"stylelint": "^15.3.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^31.0.0",
"stylelint-config-standard-scss": "^7.0.1",
"ts-jest": "^29.1.0",
"typescript": "~4.9.4"
}
}