-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.5 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.5 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
{
"name": "elonkit",
"version": "0.3.0",
"license": "MIT",
"scripts": {
"start": "yarn workspace @elonkit/angular start",
"build": "ng build --configuration production && scss-bundle -c scss-bundle.config.json && scss-bundle -c scss-bundle.overrides.config.json && cp projects/elonkit/src/theming/typography.scss dist/elonkit/theming && cp -r projects/elonkit/src/theming/presets dist/elonkit/theming/presets && cp README.md dist/elonkit && cp LICENSE.md dist/elonkit",
"build:storybook": "yarn workspace @elonkit/angular build",
"build-storybook": "yarn run build:storybook",
"test": "ng test",
"test:watch": "ng test --watch",
"lint": "yarn run lint:tslint && yarn run lint:stylelint",
"lint:tslint": "tslint -c tslint.json --project tsconfig.json 'projects/**/*.ts'",
"lint:tslint:fix": "tslint -c tslint.json --project tsconfig.json 'projects/**/*.ts' --fix",
"lint:stylelint": "stylelint projects",
"lint:stylelint:fix": "stylelint projects --fix",
"release": "standard-version",
"release:dry-run": "standard-version --dry-run"
},
"private": true,
"workspaces": [
"projects/elonkit/src"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "tslint -c ./tslint.json --project tsconfig.json",
"*.{css,scss}": "stylelint"
},
"dependencies": {
"@angular/animations": "~12.2.1",
"@angular/cdk": "~12.2.1",
"@angular/common": "~12.2.1",
"@angular/compiler": "~12.2.1",
"@angular/core": "~12.2.1",
"@angular/forms": "~12.2.1",
"@angular/material": "~12.2.1",
"@angular/platform-browser": "~12.2.1",
"@angular/platform-browser-dynamic": "~12.2.1",
"@angular/router": "~12.2.1",
"angular2-text-mask": "^9.0.0",
"rxjs": "~7.3.0",
"text-mask-addons": "^3.8.0",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "^12.1.1",
"@angular-devkit/build-angular": "~12.2.1",
"@angular/cli": "~12.2.1",
"@angular/compiler-cli": "~12.2.1",
"@angular/language-service": "~12.2.1",
"@babel/core": "~7.12.17",
"@babel/helper-validator-option": "^7.12.11",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@compodoc/compodoc": "~1.1.11",
"@material-ui/core": "^4.11.3",
"@storybook/addon-a11y": "~6.3.7",
"@storybook/addon-actions": "~6.3.7",
"@storybook/addon-controls": "~6.3.7",
"@storybook/addon-docs": "~6.3.7",
"@storybook/addon-toolbars": "~6.3.7",
"@storybook/addon-viewport": "~6.3.7",
"@storybook/angular": "~6.3.7",
"@testing-library/angular": "10.11.0",
"@testing-library/jest-dom": "~5.11.9",
"@types/jest": "~26.0.20",
"@types/node": "^14.14.30",
"babel-loader": "~8.2.2",
"chromatic": "^5.9.2",
"codelyzer": "^6.0.0",
"copy-webpack-plugin": "~6.0.3",
"css-loader": "~3.5.3",
"husky": "~4.2.5",
"jest": "~27.1.0",
"lint-staged": "~10.5.4",
"ng-packagr": "^12.2.0",
"prettier": "~2.2.1",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"scss-bundle": "~3.1.1",
"standard-version": "^9.3.1",
"storybook-dark-mode": "^1.0.7",
"stylelint": "~13.10.0",
"stylelint-config-sass-guidelines": "~8.0.0",
"stylelint-order": "~4.1.0",
"ts-dedent": "^1.1.1",
"ts-node": "~10.2.1",
"tslint": "~6.1.0",
"tslint-config-prettier": "~1.18.0",
"tslint-plugin-prettier": "~2.3.0",
"typescript": "~4.3.5"
}
}