-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.38 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
{
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint-staged": "lint-staged",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"test": "pnpm lint && pnpm prettier:check",
"prepare": "husky",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:fix": "eslint . --ext .ts --fix",
"precommit": "lint-staged",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,md,mdx,css,yaml,yml}\""
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint:fix",
"prettier --write",
"npm run format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"git": {
"pre-commit": "lint-staged"
},
"dependencies": {
"@apollo/client": "^3.10.1",
"@headlessui/react": "^1.7.19",
"@heroicons/react": "^2.1.3",
"@next/bundle-analyzer": "^14.2.3",
"@reduxjs/toolkit": "^2.2.3",
"@shopify/hydrogen": "^2024.4.1",
"@shopify/hydrogen-react": "^2024.4.1",
"axios": "^1.6.8",
"clsx": "^2.1.0",
"dotenv": "^16.4.5",
"embla-carousel": "^8.0.2",
"embla-carousel-autoplay": "^8.0.2",
"embla-carousel-react": "^8.0.2",
"geist": "^1.3.0",
"mixpanel-browser": "^2.50.0",
"next": "^14.3.0-canary.30",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.1.0",
"react-modal": "^3.16.1",
"react-redux": "^9.1.1",
"redux-persist": "^6.0.0",
"redux-saga": "^1.3.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.12",
"@types/mixpanel-browser": "^2.49.0",
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"@types/react-modal": "^3.16.3",
"@types/uuid": "^9.0.8",
"@vercel/git-hooks": "^1.0.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unicorn": "^52.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"typescript": "5.4.5"
}
}