-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.49 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
{
"name": "gitlab-tools",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "npx jest --ci --json --coverage --testLocationInResults --outputFile=.coverage/report.json",
"create-env": "echo {\"host\":\"https://url-to-gitlab\",\"token\":\"your-access-token\"} > src/environments/gitlab-config.json"
},
"private": true,
"keywords": [
"gitlab",
"tools"
],
"author": "Ralf Ueberfuhr (ARS)",
"dependencies": {
"@angular/animations": "~13.3.0",
"@angular/cdk": "^13.3.5",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/flex-layout": "^13.0.0-beta.38",
"@angular/forms": "~13.3.0",
"@angular/material": "^13.3.5",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"@fontsource/roboto": "^4.5.5",
"material-design-icons-iconfont": "^6.7.0",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.4",
"@angular/cli": "~13.3.4",
"@angular/compiler-cli": "~13.3.0",
"@ngneat/spectator": "^10.0.1",
"@types/jest": "^27.5.1",
"@types/node": "^12.11.1",
"jest": "^28.1.0",
"jest-preset-angular": "^12.0.0",
"karma-coverage": "~2.1.0",
"ts-jest": "^28.0.2",
"typescript": "~4.6.2"
}
}