-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.44 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.44 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
{
"name": "angular-app",
"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 dist/@api/users",
"check": "npm run lint && npm run test",
"test": "ng test --code-coverage",
"test:watch": "ng test --code-coverage --watch",
"test:debug": "ng test --code-coverage --watch --browsers=ChromeDebugging",
"lint": "prettier --check \"src/**/*.{ts,scss,html}\" \"e2e/**/*.ts\"",
"lint:fix": "prettier --write \"src/**/*.{ts,scss,html}\" \"e2e/**/*.ts\"",
"clean": "rimraf dist/ .angular/",
"serve:spa": "ng serve",
"serve:api": "node e2e/server/server.js",
"e2e": "rimraf dist/e2e && npm-run-all -p -r serve:api \"ng e2e\"",
"e2e:watch": "rimraf dist/e2e && npm-run-all -p start protractor:watch",
"protractor": "protractor e2e/protractor.conf.override.js",
"protractor:watch": "wait-on http://localhost:4200/ && watch \"npm run protractor\" e2e/src --wait=1",
"protractor:debug": "node --inspect-brk node_modules/protractor/bin/protractor e2e/protractor.conf.override.js",
"build": "ng build",
"postinstall": "npm run models"
},
"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.5.0",
"tslib": "2.3.0",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.2.1",
"@angular/cli": "~13.2.1",
"@angular/compiler-cli": "~13.2.1",
"@ng-apimock/core": "^3.4.0",
"@ng-apimock/dev-interface": "3.1.1",
"@ng-apimock/protractor-plugin": "^2.0.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"jasmine-core": "~3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.9",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.1.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-openapi-gen": "^0.20.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"protractor": "~7.0.0",
"protractor-beautiful-reporter": "^1.3.6",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "~4.5.2",
"wait-on": "^6.0.0",
"watch": "^1.0.2",
"webdriver-manager": "^12.1.8"
}
}