-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.96 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.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
{
"name": "uikit-angular",
"version": "5.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve sample-app",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "vitest run",
"test:watch": "vitest",
"build:lib": "ng build cometchat-uikit",
"build:app": "ng build sample-app",
"switch-to-npm": "node scripts/switch-to-npm.js",
"switch-to-local": "node scripts/switch-to-local.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"projects/**/*.{ts,html,json}\"",
"format:check": "prettier --check \"projects/**/*.{ts,html,json}\"",
"storybook": "ng run sample-app:storybook",
"build-storybook": "ng run sample-app:build-storybook",
"a11y:audit": "node scripts/accessibility-audit.js",
"a11y:axe": "node scripts/axe-audit.js",
"a11y:pa11y": "pa11y-ci",
"a11y:all": "npm run a11y:audit && npm run a11y:axe",
"verify:angular-compat": "node scripts/verify-angular-compatibility.js",
"storybook:audit": "npx ts-node scripts/storybook-audit.ts",
"docs:audit": "npx ts-node scripts/docs-audit.ts",
"css:audit": "npx ts-node projects/cometchat-uikit/scripts/css-audit.ts"
},
"private": true,
"browser": {
"path": false,
"fs": false
},
"packageManager": "npm@10.9.3",
"dependencies": {
"@angular/common": "^21.0.0",
"@angular/compiler": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/forms": "^21.0.0",
"@angular/platform-browser": "^21.0.0",
"@angular/platform-browser-dynamic": "^21.0.3",
"@angular/router": "^21.0.0",
"@babel/runtime": "^7.28.6",
"@cometchat/calls-sdk-javascript": "^5.0.0",
"@cometchat/chat-sdk-javascript": "^4.1.8",
"dompurify": "^3.3.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "^0.16.0"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^2.3.1",
"@analogjs/vitest-angular": "^2.3.1",
"@angular-devkit/build-angular": "^21.1.0",
"@angular/build": "^21.0.2",
"@angular/cli": "^21.0.2",
"@angular/compiler-cli": "^21.0.0",
"@axe-core/cli": "^4.11.0",
"@axe-core/webdriverjs": "^4.11.0",
"@chromatic-com/storybook": "^5.0.1",
"@cometchat/chat-uikit-angular": "^5.0.0",
"@compodoc/compodoc": "^1.2.0",
"@storybook/addon-a11y": "^10.2.16",
"@storybook/addon-docs": "^10.2.16",
"@storybook/angular": "^10.2.16",
"@types/dompurify": "^3.0.5",
"@types/node": "^25.2.3",
"angular-eslint": "21.1.0",
"axe-core": "^4.11.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-storybook": "^10.2.16",
"eslint-plugin-unused-imports": "^4.4.1",
"fast-check": "^4.5.3",
"jsdom": "^27.1.0",
"ng-packagr": "^21.0.0",
"pa11y-ci": "^4.0.1",
"prettier": "^3.7.4",
"storybook": "^10.2.16",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"typescript-eslint": "8.47.0",
"vitest": "^4.0.8"
}
}