-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
66 lines (66 loc) · 1.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
{
"name": "angular-task",
"description": "simple angular app for candidate assesment",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"lint": "ng lint",
"prepare": "husky install",
"prettier-write": "prettier --write --ignore-unknown"
},
"dependencies": {
"@angular/animations": "13.3.11",
"@angular/cdk": "13.3.9",
"@angular/common": "13.3.11",
"@angular/compiler": "13.3.11",
"@angular/core": "13.3.11",
"@angular/forms": "13.3.11",
"@angular/material": "13.3.9",
"@angular/platform-browser": "13.3.11",
"@angular/platform-browser-dynamic": "13.3.11",
"@angular/router": "13.3.11",
"rxjs": "^6.6.6",
"tslib": "^2.0.0",
"zone.js": "0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.3.7",
"@angular-eslint/builder": "13.2.1",
"@angular-eslint/eslint-plugin": "13.2.1",
"@angular-eslint/eslint-plugin-template": "13.2.1",
"@angular-eslint/template-parser": "13.2.1",
"@angular/cli": "13.3.7",
"@angular/compiler-cli": "13.3.11",
"@angular/language-service": "13.3.11",
"@ngrx/effects": "13.0.2",
"@ngrx/store": "13.0.2",
"@ngrx/store-devtools": "13.0.2",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"eslint": "8.12.0",
"eslint-config-prettier": "8.4.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.1",
"prettier": "2.6.2",
"ts-node": "9.1.1",
"typescript": "~4.6.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crexi-dev/angular-task.git"
},
"author": "Neil Soult",
"engines": {
"node": "16.15.0",
"npm": "8.10.0"
},
"lint-staged": {
"**/*": "npm run prettier-write"
},
"license": "UNLICENSED"
}