-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.45 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
{
"name": "next-ecommerce",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix --dir src",
"prepare": "husky install",
"lint-staged": "lint-staged",
"codegen": "graphql-codegen --config .graphqlrc.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@clerk/nextjs": "^5.2.4",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.15",
"@parcel/watcher": "^2.4.1",
"@plaiceholder/next": "^3.0.0",
"@radix-ui/react-slider": "^1.2.1",
"@stripe/react-stripe-js": "^2.7.3",
"@stripe/stripe-js": "^4.1.0",
"@types/mdx": "^2.0.13",
"@types/node": "20.14.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.20",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.15",
"graphql": "^16.9.0",
"next": "14.2.15",
"plaiceholder": "^3.0.0",
"postcss": "8.4.47",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.3.0",
"sharp": "^0.32.6",
"stripe": "^16.2.0",
"stripe-event-types": "^3.1.0",
"tailwind-merge": "^2.5.4",
"tailwindcss": "3.4.14",
"typescript": "5.5.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/client-preset": "4.4.0",
"@graphql-codegen/typed-document-node": "^5.0.10",
"@graphql-typed-document-node/core": "^3.2.0",
"@headlessui/react": "^2.1.10",
"@headlessui/tailwindcss": "^0.2.1",
"@next/env": "^14.2.15",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-testing-library": "^6.3.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"ts-node": "^10.9.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,js,ts,jsx,tsx,css}": [
"prettier --write --ignore-unknown"
]
}
}