-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.86 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "fs-spartacus-bridge",
"version": "8.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"format": "prettier --write \"./**/*.{ts,js,json,css,scss,html}\"",
"format:check": "prettier --config ./.prettierrc --list-different \"{src,projects}/**/*.{ts,js,json,css,scss,html}\"",
"uglify-dist": "node ./build-scripts/uglify.js ./dist/fs-spartacus-bridge --source-map",
"lint": "ng lint",
"lint:staged": "lint-staged -r -v",
"e2e": "ng e2e",
"compodoc": "npx compodoc -p src/tsconfig.doc.json --disableGraph --disableCoverage"
},
"private": true,
"dependencies": {
"@angular/ssr": "^17.3.11",
"@ng-bootstrap/ng-bootstrap": "^16.0.0",
"@ng-select/ng-select": "12.0.7",
"@ngrx/effects": "17.2.0",
"@ngrx/router-store": "17.2.0",
"@ngrx/store": "17.2.0",
"bootstrap": "^4.6.2",
"express": "^4.21.1",
"i18next": "23.11.3",
"i18next-http-backend": "^2.5.1",
"immutable": "4.0.0-rc.12",
"jquery": "3.7.1",
"ngx-infinite-scroll": "17.0.0",
"partysocket": "^1.0.2",
"rxjs": "7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.3.11",
"@angular-devkit/core": "17.3.11",
"@angular-devkit/schematics": "17.3.11",
"@angular-eslint/builder": "17.4.0",
"@angular-eslint/eslint-plugin": "17.4.0",
"@angular-eslint/eslint-plugin-template": "17.4.0",
"@angular-eslint/schematics": "17.4.0",
"@angular-eslint/template-parser": "17.4.0",
"@angular/animations": "17.3.12",
"@angular/cli": "17.3.11",
"@angular/common": "17.3.12",
"@angular/compiler": "17.3.12",
"@angular/compiler-cli": "17.3.12",
"@angular/core": "17.3.12",
"@angular/forms": "17.3.12",
"@angular/language-service": "17.3.12",
"@angular/localize": "17.3.12",
"@angular/platform-browser": "17.3.12",
"@angular/platform-browser-dynamic": "17.3.12",
"@angular/platform-server": "17.3.12",
"@angular/router": "17.3.12",
"@angular/service-worker": "17.3.12",
"@babel/core": "^7.24.5",
"@compodoc/compodoc": "^1.1.24",
"@schematics/angular": "17.3.6",
"@spartacus/core": "~2211.31.1",
"@spartacus/schematics": "~2211.31.1",
"@spartacus/storefront": "~2211.31.1",
"@spartacus/styles": "~2211.31.1",
"@types/jasmine": "5.1.4",
"@types/jasminewd2": "2.0.13",
"@types/node": "20.12.10",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"angular-oauth2-oidc": "17.0.2",
"command-line-args": "5.2.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.34.1",
"fs-extra": "^11.2.0",
"fs-spartacus-common": "^7.2.0",
"husky": "9.0.11",
"jasmine-core": "5.1.2",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.3",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "^2.2.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.5.4",
"karma-junit-reporter": "2.0.1",
"lint-staged": "^15.2.10",
"ng-packagr": "17.3.0",
"parse5": "7.1.2",
"postcss": "^8.4.38",
"prettier": "3.2.5",
"puppeteer": "22.15.0",
"rollup": "^4.26.0",
"stylelint": "16.5.0",
"terser": "5.31.0",
"ts-node": "10.9.2",
"tsutils": "3.21.0",
"typescript": "5.4.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.ts": [
"tslint -c ./tslint.json -p ./src/tsconfig.commit.json --fix"
],
"*.css": [
"stylelint"
],
"*.scss": [
"stylelint --syntax=scss"
],
"*.{js,ts,json,scss,css,html}": [
"prettier --write"
]
}
}