forked from VilledeMontreal/angular-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.68 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
{
"name": "angular-ui",
"version": "15.3.0",
"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=CHROMATIC_PROJECT_TOKEN",
"publish-ci:main": "cd dist/angular-ui && npm publish",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "npm run docs:json && start-storybook -p 6006",
"storybook:dev": "wait-on dist/angular-ui/global.scss && npm run storybook",
"build-storybook": "npm run build && npm run docs:json && build-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"
},
"private": true,
"dependencies": {
"@angular/animations": "~15.1.3",
"@angular/common": "~15.1.3",
"@angular/compiler": "~15.1.3",
"@angular/core": "~15.1.3",
"@angular/forms": "~15.1.3",
"@angular/platform-browser": "~15.1.3",
"@angular/platform-browser-dynamic": "~15.1.3",
"@angular/router": "~15.1.3",
"@ngxs/devtools-plugin": "^3.7.6",
"@ngxs/logger-plugin": "^3.7.6",
"@ngxs/store": "^3.7.6",
"@villedemontreal/hochelaga": "^4.23.1",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.1.4",
"@angular-eslint/builder": "^15.2.0",
"@angular-eslint/eslint-plugin": "15.2.0",
"@angular-eslint/eslint-plugin-template": "15.2.0",
"@angular-eslint/schematics": "15.2.0",
"@angular-eslint/template-parser": "15.2.0",
"@angular/cdk": "^15.1.3",
"@angular/cli": "~15.1.4",
"@angular/compiler-cli": "~15.1.3",
"@angular/elements": "^15.1.3",
"@babel/core": "^7.20.12",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.4.2",
"@compodoc/compodoc": "^1.1.19",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/angular": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@types/jasmine": "^4.3.1",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@villedemontreal/lint-config": "2.0.0-beta-2",
"@webcomponents/custom-elements": "^1.5.1",
"babel-loader": "^9.1.2",
"chromatic": "^6.15.0",
"commitlint": "^17.4.2",
"concurrently": "^7.6.0",
"eslint": "^8.33.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-storybook": "^0.6.10",
"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": "^15.1.1",
"scss-bundle": "^3.1.2",
"typescript": "~4.9.5",
"wait-on": "^7.0.1"
}
}