-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.2 KB
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
{
"name": "audiophile",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 9000",
"build": "next build",
"start": "next start --port 5454",
"lint": "next lint",
"check:lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"check:types": "tsc",
"check:all": "pnpm check:lint && pnpm check:types",
"analyze": "cross-env ANALYZE=true next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build"
},
"dependencies": {
"@graphcms/rich-text-react-renderer": "^0.6.1",
"@headlessui/react": "^2.1.2",
"@heroicons/react": "^2.1.3",
"@hookform/resolvers": "^3.9.0",
"@reduxjs/toolkit": "^2.2.5",
"@stripe/react-stripe-js": "^2.7.3",
"@stripe/stripe-js": "^4.1.0",
"@tanstack/react-query": "^5.50.1",
"@tanstack/react-query-devtools": "^5.50.1",
"clsx": "^2.1.1",
"next": "^14.2.3",
"nodemailer": "^6.9.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"react-hot-toast": "^2.4.1",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"stripe": "^16.2.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@hookform/devtools": "^4.3.1",
"@next/bundle-analyzer": "^14.2.3",
"@tanstack/eslint-plugin-query": "^5.50.1",
"@types/node": "20.14.2",
"@types/nodemailer": "^6.4.15",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@typescript-eslint/utils": "^7.15.0",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.4.38",
"prettier": "^3.3.1",
"prettier-plugin-tailwindcss": "^0.6.2",
"sharp": "^0.33.4",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3"
}
}