-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "@gregrickaby/nextjs-app-router-examples",
"description": "Examples for the new app router in Next 13.",
"private": true,
"version": "0.1.0",
"author": "Greg Rickaby <[email protected]>",
"license": "MIT",
"homepage": "https://nextjs-app-router-examples.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/gregrickaby/nextjs-app-router-examples.git"
},
"bugs": {
"url": "https://github.com/gregrickaby/nextjs-app-router-examples/issues"
},
"scripts": {
"build": "next build",
"dev": "rimraf .next && next dev",
"format": "prettier '**/*.{js,jsx,ts,tsx,md,html,css,json,yml}' --ignore-path=.gitignore --write --cache",
"lint": "npm run format && npm run lint:js",
"lint:js": "next lint",
"start": "next start"
},
"dependencies": {
"next": "^15.0.4",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "^15.0.4",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"rimraf": "^6.0.1",
"slugify": "^1.6.6",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2"
}
}