This repository has been archived by the owner on Mar 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.92 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "diplomatiq-frontend",
"version": "0.0.0",
"description": "Networking for the diplomatiq world.",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-dist": "ng build --configuration=production",
"generate-production-api-client": "rm -rf ./src/openapi/api && openapi-generator generate --generator-name typescript-fetch --input-spec https://api.diplomatiq.org/openapi-documentation/v3/api --output ./src/openapi/api --config openapi-config.json",
"generate-develop-api-client": "rm -rf ./src/openapi/api && openapi-generator generate --generator-name typescript-fetch --input-spec https://api.diplomatiq.org/openapi-documentation/v3/api?x-ms-routing-name=develop --output ./src/openapi/api --config openapi-config.json",
"generate-local-api-client": "rm -rf ./src/openapi/api && openapi-generator generate --generator-name typescript-fetch --input-spec http://localhost:8080/openapi-documentation/v3/api --output ./src/openapi/api --config openapi-config.json",
"test": "ng test",
"test-ci": "ng test --no-watch --no-progress --browsers=ChromeHeadlessCI",
"lint": "ng lint",
"e2e": "ng e2e",
"e2e-ci": "ng e2e --protractor-config=e2e/protractor-ci.conf.js",
"version": "node --experimental-modules scripts/sync-version.mjs && conventional-changelog -p angular -i CHANGELOG.md -s && git add sonar-project.properties CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Diplomatiq/diplomatiq-frontend.git"
},
"author": "Diplomatiq",
"license": "MIT",
"bugs": {
"url": "https://github.com/Diplomatiq/diplomatiq-frontend/issues"
},
"homepage": "https://app.diplomatiq.org",
"dependencies": {
"@angular-eslint/schematics": "0.0.1-alpha.27",
"@angular/animations": "~9.1.4",
"@angular/common": "~9.1.4",
"@angular/compiler": "~9.1.4",
"@angular/core": "~9.1.4",
"@angular/forms": "~9.1.4",
"@angular/localize": "^9.1.4",
"@angular/platform-browser": "~9.1.4",
"@angular/platform-browser-dynamic": "~9.1.4",
"@angular/router": "~9.1.4",
"@diplomatiq/convertibles": "^1.0.0",
"@diplomatiq/crypto-random": "^2.2.0",
"@diplomatiq/resily": "^1.2.0",
"@fortawesome/angular-fontawesome": "^0.6.1",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-regular-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@ng-bootstrap/ng-bootstrap": "^6.1.0",
"@types/scrypt-async": "^1.3.0",
"bootstrap": "^4.4.1",
"i18n-iso-countries": "^5.3.0",
"jsbn": "^1.1.0",
"rxjs": "~6.5.5",
"scrypt-async": "^2.0.1",
"tslib": "^1.11.2",
"tssrp6a": "^1.1.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^9.1.0",
"@angular-devkit/build-angular": "~0.901.4",
"@angular-eslint/builder": "0.0.1-alpha.27",
"@angular-eslint/eslint-plugin": "0.0.1-alpha.27",
"@angular-eslint/eslint-plugin-template": "0.0.1-alpha.31",
"@angular-eslint/template-parser": "0.0.1-alpha.31",
"@angular/cli": "~9.1.4",
"@angular/compiler-cli": "~9.1.4",
"@angular/language-service": "~9.1.4",
"@commitlint/cli": "^8.3.5",
"@diplomatiq/eslint-config-angular": "^1.2.0",
"@openapitools/openapi-generator-cli": "^1.0.12-4.3.0",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^13.13.5",
"codelyzer": "^5.1.2",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.1.1",
"karma-jasmine": "~3.1.1",
"karma-jasmine-html-reporter": "^1.4.0",
"prettier": "^1.19.1",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"typescript": "~3.8.3"
},
"husky": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint && npm run test-ci"
}
}