-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.98 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
{
"name": "e-commerce-with-redux",
"homepage": "https://nabil-nasr.github.io/e-commerce-with-redux",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "vite --port 5000",
"start:local": "vite --port 5000 --host",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"build": "vite build --sourcemap",
"preview": "vite preview",
"build:preview": "npm run build && vite preview",
"predeploy": "VITE_DEPLOYMENT_BASE_URL=/e-commerce-with-redux vite build --outDir dist-gh-pages --base /e-commerce-with-redux && cp dist-gh-pages/index.html dist-gh-pages/404.html",
"deploy": "gh-pages -d dist-gh-pages"
},
"dependencies": {
"@redux-devtools/extension": "^3.2.5",
"axios": "^1.4.0",
"bootstrap": "^5.3.0",
"filepond": "^4.30.4",
"filepond-plugin-file-validate-size": "^2.2.8",
"filepond-plugin-file-validate-type": "^1.2.8",
"filepond-plugin-image-exif-orientation": "^1.0.11",
"filepond-plugin-image-preview": "^4.6.11",
"filepond-plugin-image-validate-size": "^1.2.7",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-filepond": "^7.1.2",
"react-image-gallery": "^1.2.12",
"react-paginate": "^8.2.0",
"react-rating-stars-component": "^2.2.0",
"react-redux": "^8.1.1",
"react-router-dom": "^6.14.1",
"react-select": "^5.7.4",
"react-toastify": "^9.1.3",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"gh-pages": "^6.0.0",
"lightningcss": "^1.21.7",
"terser": "^5.19.2",
"vite": "^4.4.5"
},
"engines": {
"node": "18.16.0"
}
}