-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"name": "e-commerce-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "set ANALYZE=true&& pnpm build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit --incremental",
"format": "prettier --write --ignore-unknown --cache --cache-location=.prettiercache .",
"dead-code": "knip"
},
"dependencies": {
"@headlessui/react": "^2.0.4",
"@headlessui/tailwindcss": "^0.2.1",
"@next/bundle-analyzer": "^14.2.3",
"@types/node": "20.13.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"eslint": "8.57.0",
"eslint-config-next": "^14.2.3",
"jotai": "^2.8.2",
"keen-slider": "^6.8.6",
"next": "^14.2.3",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.4",
"stripe": "^15.8.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"cspell": "^8.8.3",
"husky": "^9.0.11",
"knip": "^5.17.3",
"lint-staged": "^15.2.5",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "0.6.1",
"tailwindcss": "^3.4.3"
}
}