-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.01 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.01 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
{
"name": "next-blog-app",
"version": "0.5.0",
"engines": {
"node": ">=18.17 <=19.5.0",
"yarn": "please-use-pnpm",
"npm": "please-use-pnpm"
},
"private": true,
"scripts": {
"dev": "next dev",
"analyze": "ANALYZE=true next build",
"build": "next build",
"start": "next start",
"lint": "TIMING=1 next lint",
"format": "prettier --write --list-different . --ignore-unknown",
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('pnpm') === -1) throw new Error('Please use PNPM')\"",
"prepare": "husky install",
"release": "release-it"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@types/node": "20.6.0",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"next": "13.4.19",
"next-themes": "^0.2.1",
"postcss": "8.4.29",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@next/bundle-analyzer": "^13.4.19",
"@release-it/conventional-changelog": "^7.0.1",
"@tailwindcss/typography": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"daisyui": "^3.7.4",
"eslint": "8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-testing-library": "^6.0.1",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"release-it": "^16.1.5"
},
"packageManager": "pnpm@8.7.0"
}