-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
96 lines (96 loc) · 3.74 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
{
"name": "angular-ui",
"version": "16.0.5",
"engines": {
"node": ">=16"
},
"scripts": {
"ng": "node --max_old_space_size=16096 ./node_modules/.bin/ng",
"start": "npm run storybook",
"clean": "rimraf dist",
"build": "npm run clean && ng build angular-ui && npm run bundle-styles",
"build:watch": "npm run clean && ng build angular-ui --watch",
"watch": "ng build --watch",
"test": "ng test angular-ui",
"test-ci": "ng test angular-ui --karma-config=projects/angular-ui/karma-ci.conf.js --no-progress",
"chromatic": "chromatic --project-token=cfc05a0b75de",
"publish-ci:main": "cd dist/angular-ui && npm publish",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook:dev": "wait-on dist/angular-ui/global.scss && npm run storybook",
"bundle-styles": "scss-bundle -c scss-bundle.config.json",
"bundle-styles:watch": "scss-bundle --watch -c scss-bundle.config.json",
"bundle-styles:watch:dev": "wait-on dist/angular-ui && scss-bundle -c scss-bundle.config.json && npm run bundle-styles:watch",
"lint": "prettier --check . && npm run ng lint angular-ui && npm run ng lint storybook-angular",
"lint-fix": "prettier --write . && npm run ng lint --fix angular-ui && npm run ng lint --fix storybook-angular",
"storybook": "npm run docs:json && ng run storybook-angular:storybook",
"build-storybook": "npm run build && npm run docs:json && ng run storybook-angular:build-storybook"
},
"private": true,
"dependencies": {
"@angular/animations": "16.2.6",
"@angular/common": "~16.2.6",
"@angular/compiler": "~16.2.6",
"@angular/core": "~16.2.6",
"@angular/forms": "~16.2.6",
"@angular/platform-browser": "~16.2.6",
"@angular/platform-browser-dynamic": "~16.2.6",
"@angular/router": "~16.2.6",
"@villedemontreal/hochelaga": "^4.23.1",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.3",
"@angular-eslint/builder": "16.2.0",
"@angular-eslint/eslint-plugin": "16.2.0",
"@angular-eslint/eslint-plugin-template": "16.2.0",
"@angular-eslint/schematics": "16.2.0",
"@angular-eslint/template-parser": "16.2.0",
"@angular/cdk": "^16.2.3",
"@angular/cli": "~16.2.3",
"@angular/compiler-cli": "~16.2.6",
"@angular/elements": "^16.2.6",
"@babel/core": "^7.20.12",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.4.2",
"@compodoc/compodoc": "^1.1.21",
"@storybook/addon-a11y": "^7.4.4",
"@storybook/addon-actions": "^7.4.4",
"@storybook/addon-docs": "^7.4.4",
"@storybook/addon-essentials": "^7.4.4",
"@storybook/addon-interactions": "^7.4.4",
"@storybook/addon-links": "^7.4.4",
"@storybook/angular": "^7.4.4",
"@storybook/blocks": "^7.4.4",
"@storybook/testing-library": "^0.2.1",
"@types/jasmine": "^4.3.1",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@villedemontreal/lint-config": "2.0.0-beta-2",
"@webcomponents/custom-elements": "^1.5.1",
"babel-loader": "^9.1.2",
"chromatic": "9.0.0",
"commitlint": "^17.4.2",
"concurrently": "^7.6.0",
"eslint": "^8.49.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-storybook": "^0.6.14",
"husky": "^8.0.3",
"jasmine-core": "^4.5.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"karma-viewport": "1.0.9",
"ng-packagr": "^16.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"scss-bundle": "^3.1.2",
"storybook": "^7.4.4",
"typescript": "~4.9.5",
"wait-on": "^7.0.1"
}
}