-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
140 lines (140 loc) · 5.18 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "@legal-and-general/canopy",
"version": "0.0.0",
"license": "Apache-2.0",
"url": "git://github.com/Legal-and-General/canopy.git",
"repository": "https://github.com/Legal-and-General/canopy",
"scripts": {
"// ----- STORYBOOK": "",
"start": "npm run build && ng run canopy:storybook",
"build:storybook": "ng run canopy:build-storybook",
"// ----- BUILD LIB": "",
"build": "ng build canopy && npm run build:styles",
"build:icons": "npm run optimise:svgs && npm run generate:icons && npm run generate:brand-icons",
"build:styles": "webpack --config webpack.global.config.js",
"// ----- GENERATE ICONS": "",
"generate:icons": "svg-to-ts-constants --config svg-to-ts-icons.config.js",
"generate:brand-icons": "svg-to-ts-constants --config svg-to-ts-brand-icons.config.js",
"// ----- TEST": "",
"e2e": "ng e2e",
"test": "ng test",
"test:ci": "ng test canopy --watch=false --browsers=ChromeHeadless && ng test canopy-test-app --watch=false --browsers=ChromeHeadless",
"// ----- LINTING AND OPTIMISATION": "",
"eslint": "ng lint",
"lint": "npm run eslint && npm run stylelint",
"optimise:svgs": "svgo projects/canopy/src/assets/icons -r --config=svgo-icons.config.js && svgo projects/canopy/src/assets/brand-icons -r --config=svgo-brand-icons.config.js",
"stylelint": "stylelint \"projects/**/*.scss\"",
"// ----- TEST APP": "",
"build:test-app": "npm run build && ng build canopy-test-app --configuration production --output-path ./test-dist",
"start:test-app": "ng serve",
"test:test-app": "ng test canopy-test-app",
"// ----- MISC": "",
"commit": "npx git-cz",
"docs:json": "compodoc -p ./tsconfig.json --disablePrivate -e json -d .",
"license-check:build": "npx license-checker --summary --start dist/canopy --onlyAllow 'MIT;Apache-2.0;0BSD'",
"prepare": "husky install"
},
"engines": {
"node": ">=14.17.0"
},
"private": false,
"dependencies": {
"@angular/animations": "^17.2.2",
"@angular/cdk": "^17.2.2",
"@angular/common": "^17.2.2",
"@angular/compiler": "^17.2.2",
"@angular/core": "^17.2.2",
"@angular/forms": "^17.2.2",
"@angular/platform-browser": "^17.2.2",
"@angular/platform-browser-dynamic": "^17.2.2",
"@angular/router": "^17.2.2",
"core-js": "^3.38.1",
"date-fns": "^2.30.0",
"rxjs": "^7.8.1",
"tslib": "^2.7.0",
"zone.js": "^0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.2.2",
"@angular-eslint/builder": "17.2.1",
"@angular-eslint/eslint-plugin": "17.2.1",
"@angular-eslint/eslint-plugin-template": "17.2.1",
"@angular-eslint/schematics": "^17.2.1",
"@angular-eslint/template-parser": "17.2.1",
"@angular/cli": "^17.2.2",
"@angular/compiler-cli": "^17.2.2",
"@angular/language-service": "^17.2.2",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-angular": "^17.7.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/prompt": "^18.4.0",
"@compodoc/compodoc": "^1.1.25",
"@semantic-release/github": "^10.3.3",
"@semantic-release/npm": "^12.0.1",
"@storybook/addon-a11y": "^7.6.17",
"@storybook/addon-essentials": "^7.6.16",
"@storybook/addons": "^7.6.17",
"@storybook/angular": "^7.6.16",
"@storybook/theming": "^7.6.16",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@stylelint/postcss-markdown": "^0.36.2",
"@types/jasmine": "^4.3.5",
"@types/jasminewd2": "^2.0.13",
"@types/node": "^18.17.15",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "7.1.0",
"@typestrong/ts-mockito": "^2.6.6",
"autoprefixer": "^10.4.20",
"codelyzer": "^6.0.2",
"color-convert": "^2.0.1",
"commitizen": "^4.3.0",
"copy-webpack-plugin": "^11.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.49.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jasmine": "^4.2.1",
"eslint-plugin-unused-imports": "^3.0.0",
"fs-extra": "^11.2.0",
"husky": "^8.0.3",
"jasmine-core": "^5.3.0",
"jasmine-marbles": "^0.9.2",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"license-checker": "^25.0.1",
"lint-staged": "^14.0.1",
"mini-css-extract-plugin": "^2.9.1",
"ng-mocks": "^14.13.1",
"ng-packagr": "^17.2.1",
"postcss": "^8.4.45",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"protractor": "^7.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark-gfm": "^3.0.1",
"sass": "^1.78.0",
"semantic-release": "^24.1.1",
"storybook": "^7.6.17",
"stylelint": "^16.9.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-selector-bem-pattern": "^4.0.1",
"svg-to-ts": "^11.0.0",
"svgo": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-remove-empty-scripts": "^1.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}