-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
84 lines (84 loc) · 3.19 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
{
"name": "app",
"version": "1.0.0",
"author": "Västra Götalandsregionen",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start-develop": "ng serve --configuration=dev",
"build": "ng build --configuration production komponentkartan",
"test": "npm run test-ci",
"lint": "npx ng lint komponentkartan",
"e2e": "ng e2e",
"copy-assets": "cp -r projects/komponentkartan/src/assets dist/komponentkartan",
"copy-changelog": "cp -rf CHANGELOG.md dist/komponentkartan",
"packagr": "ng build komponentkartan --configuration production && npm run copy-assets && npm run copy-changelog",
"publish-demo": "npm run packagr && npm publish --tag demo dist/komponentkartan/",
"publish-dev": "npm run packagr && npm publish --tag dev dist/komponentkartan/",
"publish-stable": "npm run packagr && npm publish dist/komponentkartan/",
"publish-local": "npm run packagr && npm pack dist/komponentkartan/",
"test-ci": "ng test komponentkartan --watch=false --source-map=false --code-coverage",
"test-ci-watch": "ng test komponentkartan --watch=true --source-map=false"
},
"dependencies": {
"@angular/animations": "^19.0.3",
"@angular/cdk": "^19.0.2",
"@angular/common": "^19.0.3",
"@angular/compiler": "^19.0.3",
"@angular/core": "^19.0.3",
"@angular/forms": "^19.0.3",
"@angular/platform-browser": "^19.0.3",
"@angular/platform-browser-dynamic": "^19.0.3",
"@angular/router": "^19.0.3",
"@fortawesome/angular-fontawesome": "^1.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"core-js": "^3.6.5",
"highlight.js": "^11.3.1",
"mini-css-extract-plugin": "^2.2.1",
"ngx-scrollbar": "^13.0.0",
"rxjs": "^7.5.7",
"tslib": "^2.0.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.3",
"@angular-eslint/builder": "^19.0.0",
"@angular-eslint/eslint-plugin": "^19.0.0",
"@angular-eslint/eslint-plugin-template": "^19.0.0",
"@angular-eslint/schematics": "^19.0.0",
"@angular-eslint/template-parser": "^19.0.0",
"@angular/cli": "^19.0.3",
"@angular/compiler-cli": "^19.0.3",
"@angular/language-service": "^19.0.3",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^12.12.54",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"angular2-template-loader": "^0.6.2",
"codelyzer": "^6.0.0",
"electron": "^15.3.0",
"eslint": "^9.16.0",
"jasmine-core": "^3.10.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.3.17",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-junit-reporter": "^2.0.1",
"karma-spec-reporter": "~0.0.32",
"karma-typescript": "^5.5.4",
"ng-packagr": "^19.0.1",
"protractor": "~7.0.0",
"smoothscroll-polyfill": "^0.4.4",
"ts-node": "^8.10.2",
"typescript": "^5.6.3",
"wallaby-webpack": "^3.9.15",
"webpack": "^5.96.1"
}
}