-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.41 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
{
"name": "next-js-boilerplate",
"version": "3.6.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"lint": "next lint",
"format": "next lint --fix && prettier '**/*.{json,yaml}' --write --ignore-path .gitignore",
"test": "jest",
"commit": "cz",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3001 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3001 cypress:headless",
"postbuild": "next-sitemap"
},
"dependencies": {
"@babel/eslint-parser": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.15.1",
"@mui/x-charts": "^6.18.4",
"@mui/x-data-grid": "^6.18.5",
"axios": "^1.4.0",
"cookie": "^0.5.0",
"dotenv": "^16.3.1",
"formik": "^2.2.9",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"moment": "^2.29.4",
"next": "^14.0.4",
"next-auth": "^4.0.5",
"next-seo": "^5.15.0",
"next-sitemap": "^3.1.45",
"nookies": "^2.5.2",
"react": "^18.2.0",
"react-confirm-toast": "^1.0.7",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-icons": "^4.10.1",
"react-social-login": "^3.4.17",
"react-toastify": "^9.1.3",
"sequelize": "^6.32.0",
"swiper": "^10.2.0",
"yup": "^1.1.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.1.2",
"@next/eslint-plugin-next": "^13.4.12",
"@percy/cli": "^1.17.0",
"@percy/cypress": "^3.1.2",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@testing-library/cypress": "^8.0.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"cssnano": "^5.1.14",
"cypress": "^4.2.0",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "^13.4.12",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^9.0.0",
"eslint-plugin-tailwindcss": "^3.8.0",
"eslint-plugin-testing-library": "^5.9.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"rimraf": "^4.1.1",
"semantic-release": "^21.0.7",
"start-server-and-test": "^1.15.2",
"tailwindcss": "^3.2.4"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git",
"@semantic-release/github"
]
}
}