forked from Hashnode/starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 821 Bytes
/
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
{
"name": "hashnode-starter-kit",
"version": "1.0.0",
"description": "An OSS Starter Kit to roll out frontends using Hashnode Public APIs",
"keywords": [],
"license": "MIT",
"author": "",
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,json}\"",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"classnames": "^2.3.1",
"next": "^13.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-packagejson": "^2.4.6",
"prettier-plugin-tailwindcss": "^0.5.5",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}