-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.99 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
69
70
71
72
73
{
"name": "NextPresso",
"description": "The blog engine fore Next.js lovers",
"keywords": [
"blog",
"Next.js",
"React"
],
"license": "MIT",
"repository": "https://github.com/donaminos/NextPresso",
"bugs": "https://github.com/donaminos/NextPresso/issues",
"homepage": "https://nextpresso.vercel.app/",
"author": "Amine SADRY",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"commitlint": "commitlint --edit",
"commit": "git-cz",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md}\"",
"lintstaged": "lint-staged",
"prisma:generate": "dotenv -e .env.local prisma generate",
"prisma:migrate:dev": "dotenv -e .env.local prisma migrate dev",
"prisma:studio": "dotenv -e .env.local prisma studio"
},
"lint-staged": {
"*": [
"pnpm run lint",
"pnpm run format"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@prisma/client": "5.2.0",
"contentlayer": "0.3.4",
"date-fns": "2.30.0",
"next": "13.4.7",
"next-contentlayer": "0.3.4",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"@types/node": "20.3.1",
"@types/react": "18.2.14",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"autoprefixer": "10.4.14",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"dotenv-cli": "7.3.0",
"eslint": "8.43.0",
"eslint-config-next": "13.4.7",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"postcss": "8.4.24",
"prettier": "2.8.8",
"prisma": "5.2.0",
"semantic-release": "21.0.6",
"tailwindcss": "3.3.2",
"typescript": "5.1.3"
}
}