-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.73 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.73 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
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "procollab",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start:social": "ng serve social_platform --open",
"build:social:dev": "npm run build:sprite && ng build social_platform --configuration=development",
"build:social:prod": "npm run build:sprite && ng build social_platform --configuration=production",
"build:prod": "npm run build:social:prod",
"build:pr": "npm run build:social:dev",
"watch": "ng build --watch social_platform --configuration=development",
"build:sprite": "svg-sprite -s --dest=projects/social_platform/src/assets/icons 'projects/social_platform/src/assets/icons/svg/**/*.svg'",
"test": "ng test",
"test:ci": "vitest run",
"lint:ts": "eslint projects/**/*.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:scss": "stylelint projects/**/*.scss --fix",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "ng run social_platform:storybook",
"build-storybook": "ng run social_platform:build-storybook",
"test:vitest": "vitest",
"test:vitest:ci": "vitest run"
},
"precommit": [
"lint:scss",
"lint:ts"
],
"private": true,
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@angular/animations": "^20.3.23",
"@angular/cdk": "^20.2.14",
"@angular/common": "^20.3.23",
"@angular/compiler": "^20.3.23",
"@angular/core": "^20.3.23",
"@angular/forms": "^20.3.23",
"@angular/material": "^20.2.14",
"@angular/platform-browser": "^20.3.23",
"@angular/platform-browser-dynamic": "^20.3.23",
"@angular/router": "^20.3.23",
"@sentry/angular": "^10.55.0",
"camelcase-keys": "^8.0.1",
"class-transformer": "^0.5.1",
"core-js": "^3.23.4",
"dayjs": "^1.11.3",
"file-saver": "^2.0.5",
"fuse.js": "^6.6.2",
"js-base64": "^3.7.7",
"js-cookie": "^3.0.5",
"linkify-string": "^4.1.1",
"linkifyjs": "^4.1.1",
"nanoid": "^4.0.0",
"ng-click-outside": "^9.0.1",
"ngx-autosize": "^2.0.4",
"ngx-image-cropper": "^9.1.5",
"ngx-mask": "^19.0.7",
"rxjs": "~7.5.0",
"snakecase-keys": "^5.4.2",
"tslib": "^2.3.0",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^2.6.0",
"@analogjs/vitest-angular": "^2.6.0",
"@angular-devkit/architect": "^0.2003.23",
"@angular-devkit/build-angular": "^20.3.26",
"@angular-devkit/core": "^20.3.23",
"@angular/build": "^20.3.26",
"@angular/cli": "^20.3.26",
"@angular/compiler-cli": "^20.3.23",
"@babel/core": "^7.18.6",
"@compodoc/compodoc": "^1.1.19",
"@eslint/js": "^9.39.4",
"@storybook/addon-docs": "^10.4.2",
"@storybook/angular": "^10.4.2",
"@types/file-saver": "^2.0.7",
"@types/jasmine": "~3.10.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.12.0",
"babel-loader": "^8.2.5",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-boundaries": "^6.0.2",
"eslint-plugin-storybook": "^10.4.2",
"globals": "^16.5.0",
"intl": "^1.2.5",
"jasmine-core": "~4.0.0",
"jsdom": "^29.1.1",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^20.3.2",
"pre-commit": "^1.2.2",
"prettier": "^3.8.3",
"storybook": "^10.4.2",
"stylelint": "^14.9.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"svg-sprite": "^2.0.2",
"typescript": "5.9.3",
"typescript-eslint": "^8.60.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^3.1.1"
}
}