-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.43 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
{
"name": "Bandage",
"version": "1.0.0",
"description": "Introducing a user-friendly e-commerce website with a minimalist design",
"license": "MIT",
"scripts": {
"dev:next": "next dev",
"dev": "run-p dev:*",
"build": "rimraf .next .swc out coverage && npm run test && next build && next-sitemap",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"clean": "rimraf .next .swc out coverage",
"lint": "next lint",
"format": "next lint --fix && prettier '**/*.{json,yaml}' --write --ignore-path .gitignore",
"check-types": "tsc --noEmit --pretty",
"test": "jest",
"commit": "git add . && cz",
"prepare": "husky install",
"postbuild": "next-sitemap"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@reduxjs/toolkit": "^2.0.1",
"@tanstack/react-query": "^5.17.15",
"@tanstack/react-query-devtools": "^5.17.18",
"clsx": "^2.1.0",
"formik": "^2.4.5",
"localforage": "^1.10.0",
"next": "^14.1.0",
"next-sitemap": "^4.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"react-redux": "^9.1.0",
"react-responsive-carousel": "^3.2.23",
"react-tabs": "^6.0.2",
"redux-mock-store": "^1.5.4",
"sharp": "^0.33.2",
"tailwind-merge": "^2.2.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@commitlint/cz-commitlint": "^18.4.4",
"@faker-js/faker": "^8.3.1",
"@next/bundle-analyzer": "^14.1.0",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/redux-mock-store": "^1.0.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"autoprefixer": "^10.4.17",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cssnano": "^6.0.3",
"dotenv-cli": "^7.3.0",
"encoding": "^0.1.13",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.14.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-unused-imports": "^3.0.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fail-on-console": "^3.1.2",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"start-server-and-test": "^2.0.3",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"author": "Daniel Olagunju (https://github.com/todak2000)"
}