-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.88 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": "web-shop",
"version": "0.0.0",
"scripts": {
"start": "ng serve --open",
"build": "ng build",
"test": "jest",
"test-watch": "jest --watch",
"test:coverage": "jest --coverage",
"deploy": "ng build && firebase deploy",
"prettier:fix:all": "prettier --write .",
"prepare": "husky install",
"sme": "ng build --source-map=true --named-chunks==true && source-map-explorer dist/web-shop/**/*.js"
},
"description": "This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.2.6.",
"repository": {
"type": "git",
"url": "https://github.com/semklim/WebShop_angular"
},
"author": "Roman Klymashenko <romanklimashenko@gmail.com> (https://github.com/semklim)",
"license": "MIT",
"private": true,
"dependencies": {
"@angular/animations": "^15.2.0",
"@angular/common": "^15.2.0",
"@angular/compiler": "^15.2.0",
"@angular/core": "^15.2.0",
"@angular/fire": "^7.6.1",
"@angular/forms": "^15.2.0",
"@angular/platform-browser": "^15.2.0",
"@angular/platform-browser-dynamic": "^15.2.0",
"@angular/router": "^15.2.0",
"angular-star-rating": "^6.0.0",
"bootstrap": "^5.2.3",
"css-star-rating": "^1.3.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.6",
"@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.6",
"@angular/compiler-cli": "^15.2.0",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"eslint": "^8.33.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-preset-angular": "^13.1.1",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"source-map-explorer": "^2.5.3",
"typescript": "~4.9.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --relative"
}
},
"lint-staged": {
"src/**/*.{js,ts,html,css}": "prettier --write",
"src/**/*.{js,ts}": "eslint --fix"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/src/setup.jest.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/",
"<rootDir>/cypress/",
"<rootDir>/src/test.ts"
],
"transform": {
"transform_regex": [
"ts-jest",
{
"tsConfig": "<rootDir>/tsconfig.spec.json",
"stringifyContentPathRegex": "\\.html$"
}
]
}
}
}