forked from italia/design-angular-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.3 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 4.3 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "design-angular-kit-bundle",
"description": "Un toolkit Angular conforme alle linee guida di design per i servizi web della PA",
"author": "Presidenza del Consiglio dei Ministri",
"version": "1.0.0-18",
"license": "BSD-3-Clause",
"keywords": [
"angular",
"toolkit",
"design",
"italia",
"frontend",
"bootstrap5"
],
"repository": {
"type": "git",
"url": "https://github.com/italia/design-angular-kit.git"
},
"contributors": [
{
"name": "Cristian Borelli",
"url": "https://github.com/cri99"
},
{
"name": "Antonino Bonanno",
"email": "bonanno@net-serv.it",
"url": "https://github.com/AntoninoBonanno"
},
{
"name": "Net Service Srl",
"email": "areatecnica@net-serv.it",
"url": "https://www.net-serv.it/"
},
{
"name": "Design Angular Kit community",
"url": "https://github.com/italia/design-angular-kit/graphs/contributors"
}
],
"scripts": {
"ng": "ng",
"start": "npm run compodoc-compile && concurrently \"npm run nunjucks-compile -- -w --path .\" \"ng serve\"",
"build": "npm run nunjucks-compile -- --path . && npm run compodoc-compile && ng build --configuration production --base-href design-angular-kit",
"build:lib": "ng build --configuration production design-angular-kit && cp README.md dist/design-angular-kit/",
"watch:lib": "ng build --watch design-angular-kit",
"test": "ng test design-angular-kit --browsers=ChromeHeadless --no-watch",
"lint": "ng lint",
"e2e": "npm run compodoc-compile && npm run nunjucks-compile && ng e2e",
"compodoc-compile": "compodoc -p projects/design-angular-kit/tsconfig.lib.json -e json -d src/assets",
"nunjucks-compile": "nunjucks --options nunjucks.json src/app/**/*.tpl",
"documentation-deploy-to-gh-pages": "gh-pages -d dist/design-angular-kit-bundle -m 'chore: update documentation'",
"version": "node ./scripts/sync-versions.js && git add ./projects/design-angular-kit/package.json && conventional-changelog -p angular -i CHANGELOG.md -s && node scripts/wait-confirm && git add CHANGELOG.md",
"postversion": "echo \"You can now publish your version using 'git push --follow-tags'\""
},
"dependencies": {
"@angular-devkit/schematics": "^16.1.4",
"@angular/animations": "^16.1.3",
"@angular/common": "^16.1.3",
"@angular/compiler": "^16.1.3",
"@angular/core": "^16.1.3",
"@angular/forms": "^16.1.3",
"@angular/localize": "^16.1.3",
"@angular/platform-browser": "^16.1.3",
"@angular/platform-browser-dynamic": "^16.1.3",
"@angular/router": "^16.1.3",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"bootstrap-italia": "^2.6.0",
"core-js": "^3.31.1",
"fp-ts": "^2.16.0",
"io-ts": "^2.2.20",
"ngx-highlightjs": "^10.0.0",
"rxjs": "^7.8.1",
"tslib": "^2.6.0",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.4",
"@angular-eslint/builder": "16.0.3",
"@angular-eslint/eslint-plugin": "16.0.3",
"@angular-eslint/eslint-plugin-template": "16.0.3",
"@angular-eslint/schematics": "16.0.3",
"@angular-eslint/template-parser": "16.0.3",
"@angular/cli": "^16.1.4",
"@angular/compiler-cli": "^16.1.3",
"@angular/language-service": "^16.1.3",
"@compodoc/compodoc": "^1.1.21",
"@types/bootstrap": "^5.2.6",
"@types/jasmine": "~4.3.5",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"browserslist-config-design-italia": "^1.1.0",
"concurrently": "^8.2.0",
"conventional-changelog": "^4.0.0",
"conventional-changelog-cli": "^3.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.44.0",
"gh-pages": "^5.0.0",
"jasmine-core": "~5.0.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "^2.2.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^16.1.0",
"nunjucks-cli": "^1.0.0",
"semantic-release": "^21.0.7",
"ts-node": "~10.9.1",
"typescript": "~5.1.6"
},
"browserslist": [
"extends browserslist-config-design-italia"
]
}