forked from siga-fab/cca-fab-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.96 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.96 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
{
"name": "cca-fab-components",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "npm run storybook",
"build": "ng build",
"build:assets": "node-sass projects/common/src/assets/scss/public-api.scss dist/common/styles.min.css --output-style compressed",
"clean": "rimraf ./dist",
"test": "ng test",
"test:watch": "ng test --watch",
"test:ci": "npm run clean && ng test --ci --runInBand",
"test:cov": "ng test --coverage",
"lint": "ng lint",
"lint:test": "prettier \"projects/**/*.{html,md,scss,json,ts}\" \"src/**/*.{html,md,scss,json,ts}\" --list-different",
"lint:prettier": "prettier \"projects/**/*.{html,md,scss,json,ts}\" \"src/**/*.{html,md,scss,json,ts}\" --write",
"e2e": "ng e2e",
"storybook": "npm run docs:json && start-storybook -p 6006 -s public",
"build:storybook": "build-storybook",
"build:prod": "ng build --prod",
"build:ci": "npm run build:prod && npm run build:assets",
"release:ci": "lerna exec --concurrency 1 -- npx --no-install semantic-release -e semantic-release-monorepo",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"build-storybook": "npm run docs:json && build-storybook -s public",
"deploy-storybook": "storybook-to-ghpages"
},
"private": false,
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged && npm run lint && npm run test",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"dependencies": {
"@angular/animations": "~9.1.12",
"@angular/common": "~9.1.12",
"@angular/compiler": "~9.1.12",
"@angular/core": "~9.1.12",
"@angular/forms": "~9.1.12",
"@angular/material": "^9.2.4",
"@angular/platform-browser": "~9.1.12",
"@angular/platform-browser-dynamic": "~9.1.12",
"@angular/router": "~9.1.12",
"rxjs": "~6.5.4",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-builders/jest": "^10.0.0",
"@angular-devkit/build-angular": "~0.901.12",
"@angular-devkit/build-ng-packagr": "~0.901.12",
"@angular/cli": "~9.1.12",
"@angular/compiler-cli": "^9.1.12",
"@babel/core": "^7.11.6",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@compodoc/compodoc": "^1.1.11",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@storybook/addon-actions": "^6.0.22",
"@storybook/addon-essentials": "^6.0.22",
"@storybook/addon-links": "^6.0.22",
"@storybook/angular": "^6.0.22",
"@storybook/storybook-deployer": "^2.8.6",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^26.0.13",
"@types/node": "^12.12.62",
"babel-loader": "^8.0.0-beta.6",
"codelyzer": "^6.0.0",
"commitizen": "^4.1.5",
"conventional-changelog-eslint": "^3.0.8",
"css-loader": "^4.3.0",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"jest": "^26.4.2",
"lerna": "^3.22.1",
"ng-packagr": "^10.0.0",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.0",
"protractor": "~7.0.0",
"sass-loader": "^10.0.2",
"semantic-release": "^17.1.1",
"semantic-release-monorepo": "^7.0.2",
"style-loader": "^1.2.1",
"to-string-loader": "^1.1.6",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "~3.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"compodoc": {
"disablePrivate": true,
"disableProtected": true,
"disableInternal": true,
"disableLifeCycleHooks": true,
"disableRoutesGraph": true
}
}