-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.52 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
{
"name": "procollab",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve social_platform",
"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:skills:prod": "ng build skills --configuration=production",
"build:skills:dev": "ng build skills --configuration=development",
"build:prod": "npm run build:social:prod && npm run build:skills:prod",
"build:pr": "npm run build:social:dev && npm run build:skills:dev",
"watch": "ng build --watch social_platform --configuration=development",
"build:sprite-social": "svg-sprite -s --dest=projects/social_platform/src/assets/icons 'projects/social_platform/src/assets/icons/svg/**/*.svg'",
"build:sprite-skills": "svg-sprite -s --dest=projects/skills/src/assets/icons 'projects/skills/src/assets/icons/svg/**/*.svg'",
"build:sprite": "npm run build:sprite-skills && npm run build:sprite-social",
"test": "ng test",
"test:ci": "ng test --browsers=Headless --no-watch",
"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 ."
},
"precommit": [
"lint:scss",
"lint:ts"
],
"private": true,
"engines": {
"node": "~18.16"
},
"dependencies": {
"@angular/animations": "^17.0.4",
"@angular/cdk": "^16.2.12",
"@angular/common": "^17.0.4",
"@angular/compiler": "^17.0.4",
"@angular/core": "^17.0.4",
"@angular/forms": "^17.0.4",
"@angular/material": "^16.2.12",
"@angular/platform-browser": "^17.0.4",
"@angular/platform-browser-dynamic": "^17.0.4",
"@angular/router": "^17.0.4",
"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-mask": "^13.0.3",
"rxjs": "~7.5.0",
"snakecase-keys": "^5.4.2",
"tslib": "^2.3.0",
"zone.js": "^0.14.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.3",
"@angular/cli": "^17.0.3",
"@angular/compiler-cli": "^17.0.4",
"@babel/core": "^7.18.6",
"@compodoc/compodoc": "^1.1.19",
"@types/file-saver": "^2.0.7",
"@types/jasmine": "~3.10.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"babel-loader": "^8.2.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"intl": "^1.2.5",
"jasmine-core": "~4.0.0",
"karma": "~6.3.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": "^17.0.0",
"pre-commit": "^1.2.2",
"prettier": "2.7.1",
"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.2.2"
}
}