-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.7 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.7 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "workshop-angular-testing",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"test:exercise:01": "jest -t=Exercise01",
"test:exercise:02": "jest -t=Exercise02",
"test:exercise:03": "jest -t=Exercise03",
"test:watch": "jest --watch",
"lint": "ng lint",
"format": "prettier \"**/*.+(js|json|scss|css|html|ts|md)\" --write",
"e2e": "ng e2e"
},
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,css,scss,md,json}": [
"npm run format"
]
},
"dependencies": {
"@angular/animations": "~11.1.0",
"@angular/common": "~11.1.0",
"@angular/compiler": "~11.1.0",
"@angular/core": "~11.1.0",
"@angular/forms": "~11.1.0",
"@angular/platform-browser": "~11.1.0",
"@angular/platform-browser-dynamic": "~11.1.0",
"@angular/router": "~11.1.0",
"@ngneat/tailwind": "^6.0.0",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-builders/custom-webpack": "11.0.0",
"@angular-builders/jest": "^11.0.0",
"@angular-devkit/build-angular": "~0.1101.1",
"@angular/cli": "~11.1.1",
"@angular/compiler-cli": "~11.1.0",
"@types/jasmine": "~3.6.0",
"@types/jest": "^26.0.20",
"@types/node": "^12.11.1",
"autoprefixer": "^10.2.3",
"codelyzer": "^6.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-preset-angular": "^8.3.2",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"tailwindcss": "2.0.2",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.1.2"
}
}