-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.52 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.52 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
65
66
67
68
69
70
71
{
"name": "angular-playwright",
"version": "0.0.1",
"private": false,
"scripts": {
"start": "npm-run-all -p serve:api serve:spa",
"models": "ng-openapi-gen --input openapi/users.yaml --output build/@api/users",
"check": "npm run lint && npm run test",
"test": "ng test",
"test:watch": "ng test --watch",
"test:debug": "node --inspect-brk node_modules/jest/bin/jest.js --runInBand",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"clean": "rimraf build/ dist/ .angular/",
"serve:spa": "ng serve",
"serve:api": "node e2e/server/server.js",
"e2e": "npm-run-all -p -r serve:api \"playwright -- -c e2e/playwright.config.js\"",
"e2e:watch": "npm-run-all -p start playwright:watch",
"playwright": "playwright test -c e2e/playwright.config.override.js",
"playwright:watch": "wait-on http://localhost:4200/ && watch \"npm run playwright\" e2e/src --wait=1",
"playwright:debug": "cross-env-shell PWDEBUG=1 npm run playwright",
"build": "ng build",
"ng": "ng"
},
"dependencies": {
"@angular/animations": "13.2.1",
"@angular/common": "13.2.1",
"@angular/compiler": "13.2.1",
"@angular/core": "13.2.1",
"@angular/forms": "13.2.1",
"@angular/platform-browser": "13.2.1",
"@angular/platform-browser-dynamic": "13.2.1",
"@angular/router": "13.2.1",
"rxjs": "7.4.0",
"tslib": "2.3.0",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "13.0.3",
"@angular-devkit/build-angular": "13.2.2",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "13.2.2",
"@angular/compiler-cli": "13.2.1",
"@ng-apimock/base-client": "^3.3.1",
"@ng-apimock/core": "^3.11.2",
"@ng-apimock/dev-interface": "^3.3.1",
"@playwright/test": "^1.41.2",
"@types/jest": "^27.4.1",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"cross-env": "^7.0.3",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"jest-marbles": "^3.0.2",
"ng-openapi-gen": "^0.51.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "~4.5.2",
"wait-on": "^6.0.1",
"watch": "^1.0.2"
}
}