-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.04 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
{
"name": "angular-template",
"version": "7.7.7",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "npm run test:unit && npm run test:integration && npm run test:e2e:run",
"test:ci": "npm run test:unit:ci && npm run test:integration:ci && npm run test:e2e:ci",
"test:unit": "ng test -- --coverage",
"test:unit:ci": "ng test -- --ci",
"test:integration": "jest --config=jest.config.integration.js",
"test:integration:ci": "jest --config=jest.config.integration.js --ci",
"test:e2e:open": "npx cypress open",
"test:e2e:run": "cypress run",
"test:e2e:ci": "start-server-and-test start http://localhost:4200? test:e2e:run",
"format": "prettier --write --ignore-path .gitignore .",
"lint": "ng lint",
"lint:fix": "ng lint -- --fix"
},
"private": true,
"dependencies": {
"@angular/animations": "13.2.2",
"@angular/common": "13.2.2",
"@angular/compiler": "13.2.2",
"@angular/core": "13.2.2",
"@angular/forms": "13.2.2",
"@angular/platform-browser": "13.2.2",
"@angular/platform-browser-dynamic": "13.2.2",
"@angular/router": "13.2.2",
"rxjs": "7.5.4",
"tslib": "2.3.1",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "13.0.3",
"@angular-devkit/build-angular": "13.2.3",
"@angular-eslint/builder": "13.1.0",
"@angular-eslint/eslint-plugin": "13.1.0",
"@angular-eslint/eslint-plugin-template": "13.1.0",
"@angular-eslint/schematics": "13.1.0",
"@angular-eslint/template-parser": "13.1.0",
"@angular/cli": "13.2.3",
"@angular/compiler-cli": "13.2.2",
"@types/jest": "27.4.0",
"@types/node": "17.0.18",
"@typescript-eslint/eslint-plugin": "5.12.0",
"@typescript-eslint/parser": "5.12.0",
"cypress": "9.4.1",
"eslint": "8.9.0",
"eslint-plugin-cypress": "2.12.1",
"jest": "27.5.1",
"prettier": "2.5.1",
"pretty-quick": "3.1.3",
"start-server-and-test": "1.14.0",
"typescript": "4.5.5"
}
}