-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.79 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
{
"name": "planare.dev",
"description": "A very barebones landing page for Planare.",
"version": "0.2.0",
"author": "Jackson <[email protected]>",
"bugs": {
"url": "https://github.com/planare/planare.dev/issues"
},
"dependencies": {
"@stitches/react": "^1.2.8",
"@vercel/analytics": "^1.4.1",
"next": "15.1.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-wrap-balancer": "^1.1.1",
"sharp": "^0.33.5",
"swr": "^2.3.0",
"typescript": "^5.7.2",
"vercel": "^37.14.0"
},
"devDependencies": {
"@next/env": "15.1.1",
"@types/node": "^22.10.2",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"eslint": "^8.57.1",
"eslint-config-dolmios": "^1.11.1",
"next-sitemap": "^4.2.3",
"prettier": "^3.4.2"
},
"homepage": "https://planare.dev",
"keywords": [
"next",
"nextjs",
"react",
"typescript",
"vercel"
],
"license": "MIT",
"prettier": "eslint-config-dolmios/configs/prettier",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/planare/planare.dev.git"
},
"scripts": {
"build": "next build",
"dev": "echo '⚡️ Fetching device IP for development...' && ipconfig getifaddr en0 && echo '🫡' && next dev --turbopack -p 420",
"env:link": "vercel link",
"env:local": "vercel env pull .env.local",
"lint": "eslint . --ext js,jsx,ts,tsx --fix",
"prettier": "prettier --write '**/*.{js,jsx,tsx}' '!node_modules/**' '!.git/**' '!.next/**'",
"sitemap": "next-sitemap",
"tidy": "pnpm lint && pnpm prettier",
"bump": "pnpm update && pnpm tidy && pnpm build"
},
"eslintConfig": {
"extends": [
"dolmios"
]
},
"pnpm": {
"overrides": {
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2"
}
}
}