-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.9 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
{
"name": "spotify-clone",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "Tarmiel",
"license": "ISC",
"scripts": {
"start:dev:webpack": "webpack serve --env port=3000",
"start:dev": "vite",
"build:prod": "webpack --env mode=production",
"build:dev": "webpack --env mode=development",
"sb:webpack": "storybook dev -p 6006 -c ./config/storybook",
"sb": "storybook dev -p 6007 -c ./config/storybook-vite",
"sb:build:webpack": "storybook build -c ./config/storybook",
"sb:build": "storybook build -c ./config/storybook-vite",
"prettier": "npx prettier --write **/*.{ts,tsx,json}",
"lint:ts": "eslint \"./src/**/*.{ts,tsx}\"",
"lint:ts:fix": "eslint \"**/*.{ts,tsx}\" --fix",
"lint:scss": "npx stylelint \"**/*.scss\"",
"lint:scss:fix": "npx stylelint \"**/*.scss\" --fix",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@hookform/resolvers": "^3.3.1",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.1.3",
"gsap": "^3.12.2",
"i18next": "^23.4.4",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.1",
"react-i18next": "^13.1.2",
"react-redux": "^8.1.2",
"react-router-dom": "^6.15.0",
"react-toastify": "^9.1.3",
"react-transition-group": "^4.4.5",
"zod": "^3.22.2"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@babel/types": "^7.22.10",
"@hookform/devtools": "^4.3.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@storybook/addon-essentials": "^7.2.3",
"@storybook/addon-interactions": "^7.2.3",
"@storybook/addon-links": "^7.2.3",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.2.3",
"@storybook/builder-vite": "^7.2.3",
"@storybook/react": "^7.2.3",
"@storybook/react-vite": "^7.2.3",
"@storybook/react-webpack5": "^7.2.3",
"@storybook/testing-library": "^0.2.0",
"@svgr/webpack": "^8.0.1",
"@types/babel__core": "^7.20.1",
"@types/circular-dependency-plugin": "^5.0.5",
"@types/node": "^20.4.9",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/react-transition-group": "^4.4.6",
"@types/webpack": "^5.28.1",
"@types/webpack-bundle-analyzer": "^4.6.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitejs/plugin-react": "^4.0.4",
"babel-loader": "^9.1.3",
"circular-dependency-plugin": "^5.2.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.13",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.0",
"json-server": "^0.17.3",
"lint-staged": "^13.2.3",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.0.1",
"sass": "^1.65.1",
"sass-loader": "^13.3.2",
"storybook": "^7.2.3",
"storybook-addon-themes": "^6.1.0",
"style-loader": "^3.3.3",
"stylelint": "^15.10.2",
"stylelint-config-standard-scss": "^10.0.0",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-plugin-checker": "^0.6.1",
"vite-plugin-svgr": "^3.2.0",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{css,scss}": "stylelint --fix"
}
}