-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.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
{
"name": "ecommerce",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development next dev",
"build": "next build",
"start": "cross-env NODE_ENV=production next start",
"lint": "next lint",
"lint:fix": "eslint . --ext jsx --ext .js",
"format": "prettier --write .",
"prepare": "npx husky install"
},
"dependencies": {
"@cloudinary/react": "^1.11.2",
"@cloudinary/url-gen": "^1.10.0",
"@reduxjs/toolkit": "^1.9.2",
"@stripe/react-stripe-js": "^2.0.0",
"@stripe/stripe-js": "^1.49.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"axios": "^0.26.1",
"chart.js": "^4.3.0",
"cloudinary": "^1.36.2",
"cookie": "^0.5.0",
"cross-env": "^7.0.3",
"firebase": "^9.6.11",
"formik": "^2.2.9",
"framer-motion": "^6.2.8",
"husky": "^8.0.3",
"moment": "^2.29.4",
"next": "^13.5.6",
"next-cookies": "^2.0.3",
"nookies": "^2.5.2",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.3.1",
"react-images-uploading": "^3.1.7",
"react-query": "^3.39.3",
"react-redux": "^7.2.9",
"react-select": "^5.7.3",
"reactstrap": "^9.0.1",
"styled-components": "^5.3.5",
"swiper": "^8.3.2",
"yup": "^1.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.4.4",
"@next/eslint-plugin-next": "^13.3.0",
"autoprefixer": "^10.4.4",
"babel-plugin-styled-components": "^2.0.7",
"cypress": "^9.5.4",
"eslint": "^8.38.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"postcss": "^8.4.12",
"prettier": "^2.8.7",
"tailwindcss": "^3.0.23"
},
"repository": {
"type": "git",
"directory": "https://github.com/edgarmt-dev/ecommerce-front.git"
},
"license": "MIT",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}