-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
72 lines (72 loc) · 1.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
{
"name": "online-store",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tsc": "tsc",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@stripe/react-stripe-js": "^2.7.1",
"@stripe/stripe-js": "^3.4.1",
"@types/node": "20.11.16",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"axios": "^1.6.6",
"axios-cache-interceptor": "^1.5.1",
"date-fns": "^2.30.0",
"debug": "^4.3.4",
"immer": "^10.0.4",
"lodash": "^4.17.21",
"nanoid": "^5.0.7",
"next": "^14.2.3",
"postcss": "^8",
"react": "^18",
"react-calendar": "^4.6.1",
"react-dom": "^18",
"react-hook-form": "^7.47.0",
"react-icons": "^5.0.1",
"react-toastify": "^9.1.3",
"sharp": "^0.33.2",
"stripe": "^15.8.0",
"supports-color": "^8.1.1",
"swr": "^2.2.4",
"tailwind-merge": "^2.1.0",
"tailwindcss": "^3",
"typescript": "^5",
"usehooks-ts": "^2.15.1",
"yup": "^1.3.2",
"zustand": "^4.4.6"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.5.6",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/testing-library__jest-dom": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-testing-library": "^6.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-sonar": "^0.2.16",
"lint-staged": "^15.2.9",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.11",
"ts-jest": "^29.1.2"
}
}