-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.29 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
{
"name": "cv",
"version": "3.5.0",
"author": "Konrad Stępień",
"homepage": "https://kordrad.github.io/cv",
"repository": "https://github.com/Kordrad/cv",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"lint": "eslint .",
"e2e": "ng e2e",
"test": "jest",
"test:coverage": "jest --coverage",
"deploy": "ng deploy --base-href=/cv/",
"prepare": "husky install"
},
"private": true,
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setup-jest.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/"
]
},
"dependencies": {
"@angular-eslint/schematics": "^12.1.0",
"@angular/animations": "~12.0.2",
"@angular/common": "~12.0.2",
"@angular/compiler": "~12.0.2",
"@angular/core": "~12.0.2",
"@angular/forms": "~12.0.2",
"@angular/localize": "^12.0.2",
"@angular/platform-browser": "~12.0.2",
"@angular/platform-browser-dynamic": "~12.0.2",
"@angular/router": "~12.0.2",
"@ant-design/icons-angular": "^11.0.1",
"@ngneat/transloco": "^2.20.1",
"rxjs": "^6.6.6",
"tslib": "^2.1.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.0.2",
"@angular-eslint/builder": "^12.1.0",
"@angular-eslint/eslint-plugin": "^12.1.0",
"@angular-eslint/eslint-plugin-template": "^12.1.0",
"@angular-eslint/template-parser": "^12.1.0",
"@angular/cli": "^12.0.2",
"@angular/compiler-cli": "~12.0.2",
"@angular/language-service": "~12.0.2",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "4.18.0",
"@typescript-eslint/parser": "4.18.0",
"angular-cli-ghpages": "^1.0.0-rc.2",
"codelyzer": "^6.0.1",
"eslint": "^7.22.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jasmine": "^4.1.2",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsdoc": "32.3.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-prefer-arrow": "1.2.3",
"husky": "^5.1.3",
"jest": "^26.6.3",
"jest-preset-angular": "^8.4.0",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"pretty-quick": "^3.1.0",
"protractor": "~7.0.0",
"ts-node": "~9.1.1",
"typescript": "^4.2.4"
}
}