forked from Hashnode/starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.15 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.15 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
{
"name": "devsforfun-theme-hashnode-blog-kit",
"version": "1.0.0",
"description": "An OSS Starter Kit to roll out frontends using Hashnode Public APIs and devsForFun Theme Kit",
"keywords": [],
"license": "MIT",
"author": "",
"scripts": {
"clean:cache": "rm -rf .next",
"clean:dotfiles": "find . -type f -name '._*' -exec rm -f {} +",
"clean:node_modules": "rm -rf node_modules",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,json}\"",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"classnames": "^2.3.1",
"next": "^13.5.11",
"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"
},
"packageManager": "pnpm@9.13.2+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}