-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.88 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
{
"name": "ecommerce-react",
"version": "1.0.0",
"description": "eCommerce web application (Online Store) using React.",
"main": "webpack.config.js",
"scripts": {
"start": "webpack-dev-server --mode=development --open --hot",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development --node-env=development",
"build:prod": "webpack --mode=production --node-env=production",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"format": "prettier ./src --write",
"check:format": "prettier ./src --check",
"prepare": "husky install",
"stylelint": "stylelint \"**/*.css\"",
"stylelint:fix": "stylelint \"**/*.css\" --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"author": "",
"license": "ISC",
"dependencies": {
"@commercetools/platform-sdk": "^7.8.0",
"@commercetools/sdk-client-v2": "^2.5.0",
"bootstrap": "^5.3.3",
"dotenv": "^16.4.5",
"normalize.css": "^8.0.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.2",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-image-gallery": "^1.3.0",
"react-router-dom": "^6.23.0",
"react-test-renderer": "^18.3.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@types/node-fetch": "^2.6.11",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/react-image-gallery": "^1.2.4",
"@types/react-test-renderer": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-webpack-plugin": "^4.1.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-localstorage-mock": "^2.4.26",
"mini-css-extract-plugin": "^2.9.0",
"prettier": "3.2.5",
"style-loader": "^4.0.0",
"stylelint": "^16.5.0",
"stylelint-config-clean-order": "^5.4.2",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}