-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.04 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
{
"name": "maxboom_frontend",
"version": "1.0.0",
"description": "Frontend часть проекта для сайта maxboom. Онлайн магазин, который является объединением магазинов с wildberries",
"engines": {
"node": ">=18",
"npm": ">=9.5"
},
"type": "module",
"scripts": {
"init": "node init",
"build:dev": "webpack --node-env=development",
"build:prod": "webpack --node-env=production",
"start": "webpack serve",
"format": "prettier --write .",
"lint": "eslint . & stylelint **/*.scss --fix",
"storybook": "storybook dev -p 6006 -c ./config/storybook",
"build-storybook": "storybook build -c ./config/storybook"
},
"author": "",
"license": "ISC",
"browserslist": {
"production": [
">0.2%",
"not dead"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@reduxjs/toolkit": "1.9.5",
"@storybook/test": "^8.0.0",
"axios": "^1.6.2",
"classnames": "^2.3.2",
"focus-trap": "^7.5.4",
"formik": "^2.4.5",
"leaflet": "^1.9.4",
"normalize-scss": "7.0.1",
"qs": "^6.12.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-input-mask": "^2.0.4",
"react-leaflet": "^4.2.1",
"react-loading-skeleton": "^3.4.0",
"react-redux": "8.1.2",
"react-router": "6.15.0",
"react-router-dom": "6.15.0",
"react-virtuoso": "^4.7.10",
"yup": "^1.3.2"
},
"devDependencies": {
"@babel/core": "7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.23.2",
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-interactions": "^7.5.1",
"@storybook/addon-links": "^7.5.1",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.1",
"@storybook/react": "^7.5.1",
"@storybook/react-webpack5": "^7.5.1",
"@storybook/testing-library": "^0.2.2",
"@svgr/webpack": "^8.1.0",
"@types/leaflet": "^1.9.8",
"@types/react": "^18.2.64",
"@types/react-dom": "18.2.7",
"@types/react-input-mask": "^3.0.5",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "6.4.1",
"@typescript-eslint/parser": "6.4.1",
"babel-loader": "9.1.3",
"css-loader": "^6.8.1",
"dotenv": "16.3.1",
"eslint": "8.47.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-storybook": "^0.6.15",
"html-webpack-plugin": "5.5.3",
"lefthook": "1.4.9",
"mini-css-extract-plugin": "2.7.6",
"prettier": "3.0.2",
"sass": "1.66.1",
"sass-loader": "13.3.2",
"storybook": "^7.5.1",
"style-loader": "^3.3.3",
"stylelint": "15.10.3",
"stylelint-config-prettier-scss": "1.0.0",
"stylelint-config-standard-scss": "10.0.0",
"ts-loader": "9.4.4",
"typescript": "5.1.6",
"webpack": "5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "4.15.1"
}
}