This repository was archived by the owner on Jun 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.72 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.72 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
{
"name": "@pascaliske/form-elements",
"description": "Collection of form elements for Angular 6+ projects.",
"version": "5.0.1",
"license": "MIT",
"homepage": "https://pascaliske.github.io/form-elements",
"author": {
"name": "Pascal Iske",
"email": "info@pascaliske.dev",
"url": "https://pascaliske.dev"
},
"repository": {
"url": "https://github.com/pascaliske/form-elements.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/pascaliske/form-elements/issues"
},
"private": true,
"scripts": {
"prepare": "husky install",
"start": "ng serve form-elements-demo",
"build": "run-s build:library build:scss build:metadata",
"build:library": "ng build --configuration production",
"build:scss": "scss-bundle --config scss-bundle.config.json",
"build:metadata": "cp README.md dist/form-elements/README.md && cp LICENSE.md dist/form-elements/LICENSE.md && cp CHANGELOG.md dist/form-elements/CHANGELOG.md",
"storybook": "ng run form-elements:storybook",
"docs": "ng run form-elements:build-storybook",
"lint": "ng lint",
"format": "prettier --write \"{src,projects}/**/*.{ts,scss,md,html}\"",
"version": "bump --yes package.json projects/form-elements/package.json",
"changelog": "standard-changelog",
"link": "yarn run build && cd dist/form-elements && yarn link",
"unlink": "cd dist/form-elements && yarn unlink"
},
"prettier": "@pascaliske/prettier-config",
"dependencies": {
"@angular/animations": "^13.3.0",
"@angular/common": "^13.3.0",
"@angular/compiler": "^13.3.0",
"@angular/core": "^13.3.0",
"@angular/forms": "^13.3.0",
"@angular/platform-browser": "^13.3.0",
"@angular/platform-browser-dynamic": "^13.3.0",
"@angular/router": "^13.3.0",
"@fortawesome/angular-fontawesome": "^0.10.2",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@pascaliske/html-helpers": "^1.5.12",
"core-js": "^3.26.0",
"rxjs": "^7.5.7",
"tslib": "^2.4.1",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.9",
"@angular/cli": "^13.3.1",
"@angular/compiler-cli": "^13.3.0",
"@angular/language-service": "^13.3.11",
"@babel/core": "^7.19.6",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@compodoc/compodoc": "^1.1.19",
"@pascaliske/prettier-config": "^1.2.0",
"@pascaliske/schematics": "^0.0.12",
"@pascaliske/storybook-helpers": "^1.1.5",
"@rstacruz/bump-cli": "^2.0.1",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-docs": "^6.5.13",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.5.13",
"@storybook/addon-notes": "^5.3.21",
"@storybook/angular": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/theming": "^6.4.22",
"@types/faker": "5.5.9",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.11.9",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.18.0",
"babel-loader": "^9.0.1",
"chalk": "^5.1.2",
"choices.js": "^10.1.0",
"codelyzer": "^6.0.2",
"faker": "5.5.3",
"flatpickr": "4.6.13",
"fuzzysearch": "^1.0.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"lodash-es": "^4.17.21",
"ng-packagr": "^15.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"scss-bundle": "^3.1.2",
"standard-changelog": "^3.0.0",
"style-loader": "^3.3.1",
"ts-node": "^10.9.1",
"tslint": "~6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "~4.6.4"
}
}