-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.46 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
{
"name": "portfolio",
"version": "1.0.0",
"scripts": {
"test": "ng test",
"test:ci": "ng test --configuration=ci",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration=production && node ./scripts/copy-index.js",
"lint": "ng lint",
"lint:styles": "stylelint \"src/**/*.scss\"",
"lint:styles:fix": "stylelint \"src/**/*.scss\" --fix",
"prettier": "prettier . -c",
"prettier:fix": "prettier . --write",
"extract-i18n": "ng extract-i18n --output-path src/locale --out-file translation.base.xlf && xliffmerge --profile xliffmerge.json ru-RU",
"serve:http": "http-server ./dist/portfolio",
"deploy": "node --unhandled-rejections=strict ./scripts/deploy.js"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.3.0",
"@angular/cdk": "^16.1.8",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
"@angular/core": "^17.3.0",
"@angular/forms": "^17.3.0",
"@angular/localize": "17.3.0",
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/router": "^17.3.0",
"intersection-observer": "^0.12.0",
"jsdom-testing-mocks": "^1.11.0",
"ngx-scrollbar": "^13.0.3",
"normalize.css": "^8.0.1",
"resize-observer-polyfill": "^1.5.1",
"rxjs": "~7.4.0",
"swiper": "^6.3.5",
"tslib": "^2.0.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-builders/jest": "^17.0.0",
"@angular-devkit/build-angular": "^17.3.0",
"@angular-eslint/builder": "17.0.0",
"@angular-eslint/eslint-plugin": "17.0.0",
"@angular-eslint/eslint-plugin-template": "17.0.0",
"@angular-eslint/schematics": "17.0.0",
"@angular-eslint/template-parser": "17.0.0",
"@angular/cli": "^17.3.0",
"@angular/compiler-cli": "^17.3.0",
"@angular/language-service": "^17.3.0",
"@types/jest": "^29.5.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.9.0",
"http-server": "^14.1.1",
"jest": "^29.6.2",
"jest-preset-angular": "^13.1.1",
"ngx-i18nsupport": "^0.17.1",
"prettier": "^2.8.8",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"ts-node": "~8.3.0",
"typescript": "~5.4.2"
},
"sideEffects": false
}