-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
{
"name": "ecommerce-application",
"version": "1.0.0",
"description": "eCommerce-Application",
"private": "true",
"scripts": {
"start": "webpack serve --open --config ./webpack.config.js --env mode=dev",
"build": "webpack --config ./webpack.config.js --env mode=prod",
"lint": "eslint . --ext .ts",
"test": "jest --coverage --silent",
"format": "prettier --write src",
"check-format": "prettier --check src",
"pre-commit": "npm test & npm run check-format",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [],
"author": "Siarhei Muliarenka",
"license": "ISC",
"homepage": "",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@types/toastify-js": "1.12.0",
"@types/webpack": "^5.28.2",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"babel-jest": "^29.6.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.3.1",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lint-staged": "^13.2.3",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.0.1",
"sass": "^1.64.1",
"sass-loader": "^13.3.2",
"sass-resources-loader": "^2.2.5",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-plugin-scss-modules": "^0.1.2",
"typescript": "^5.1.6",
"typescript-plugin-css-modules": "^5.0.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"dependencies": {
"@commercetools/platform-sdk": "^5.0.0",
"@commercetools/sdk-client-v2": "^2.2.0",
"swiper": "^10.2.0",
"toastify-js": "1.12.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}