-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
91 lines (91 loc) · 2.96 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
{
"name": "Ecommerce-website",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next -p 50050",
"build": "next build",
"export": "next build && next export",
"start": "next start -p 50050",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "yarn run check-format && yarn run check-lint && yarn run check-types && yarn run build",
"prepare": "husky install"
},
"dependencies": {
"@badrap/bar-of-progress": "^0.1.2",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.1",
"@mui/styles": "^5.5.1",
"@reduxjs/toolkit": "^1.8.1",
"axios": "^0.26.1",
"mapbox-gl": "^2.8.2",
"moment": "^2.29.3",
"next": "latest",
"next-redux-wrapper": "^7.0.5",
"next-themes": "^0.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.28.0",
"react-map-gl": "^7.0.11",
"react-number-format": "^4.9.3",
"react-rating-stars-component": "^2.2.0",
"react-redux": "^7.2.8",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1",
"resolve": "^1.22.0",
"socket.io-client": "^4.6.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss": "^3.0.24",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@heroicons/react": "^1.0.6",
"@hookform/resolvers": "^2.8.8",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.0",
"@types/jest": "^27.4.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.24",
"@types/react": "^18.0.5",
"@types/react-redux": "^7.1.24",
"@types/redux-logger": "^3.0.9",
"@types/socket.io-client": "^3.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.5.1",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"eslint-plugin-testing-library": "^5.3.1",
"husky": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"postcss": "^8.4.5",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.1",
"typescript": "4.5.4"
},
"repository": "https://github.com/saddamarbaa/Ecommerce-website-next.js-typeScript",
"author": "Saddam Arbaa"
}