generated from VladimirDegt/Template-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.54 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
{
"name": "Camper rentals",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"pret": "npx prettier . --write",
"build:prod": "webpack --env mode=production",
"build:dev": "webpack --env mode=development",
"lint:ts": "npx eslint . --ext .tsx --ext .ts",
"lint:ts:fix": "npx eslint . --ext .tsx --ext .ts --fix",
"lint:scss": "npx stylelint **/*.scss",
"lint:scss:fix": "npx stylelint **/*.scss --fix",
"start:webpack": "webpack serve --env port=3002",
"start": "vite",
"unit": "jest --config ./config/jest/jest.config.ts"
},
"keywords": [],
"author": "Volodymyr <degtyarevvladimirr@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@svgr/webpack": "^8.1.0",
"@types/circular-dependency-plugin": "^5.0.8",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/react": "^18.2.38",
"@types/react-datepicker": "^6.2.0",
"@types/react-dom": "^18.2.17",
"@types/react-router-dom": "^5.3.3",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitejs/plugin-react": "^4.2.1",
"circular-dependency-plugin": "^5.2.2",
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"knip": "^5.9.4",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "3.1.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.4.5",
"vite": "^5.0.10",
"vite-plugin-svgr": "^4.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"browserslist": [
"defaults and fully supports es6-module",
"maintained node versions"
],
"dependencies": {
"@headlessui/react": "^1.7.17",
"@reduxjs/toolkit": "^2.0.0",
"axios": "^1.6.2",
"dotenv": "^16.4.5",
"formik": "^2.4.5",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-datepicker": "^6.7.1",
"react-dom": "^18.2.0",
"react-redux": "^9.0.0",
"react-router-dom": "^6.20.0",
"react-toastify": "^9.1.3",
"simplebar-react": "^3.2.4",
"yup": "^1.4.0"
}
}