-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.58 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
{
"name": "ginb",
"version": "0.0.1",
"description": "Write & Share all in GitHub",
"main": "./readme.md",
"scripts": {
"build": "next build",
"dev": "next dev",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"start": "next start",
"prepare": "husky"
},
"lint-staged": {
"./src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/chralpha/ginb.git"
},
"keywords": [
"GitHub",
"Issue",
"Blog"
],
"author": "ChrAlpha",
"license": "MIT",
"bugs": {
"url": "https://github.com/chralpha/ginb/issues"
},
"homepage": "https://github.com/chralpha/ginb#readme",
"dependencies": {
"@tailwindcss/typography": "^0.5.12",
"autoprefixer": "10.4.15",
"bcrypt": "^5.1.1",
"feed": "^4.2.2",
"github-slugger": "^2.0.0",
"next": "^14.1.4",
"octokit": "^3.1.2",
"postcss": "8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^9.0.1",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"tailwindcss": "3.3.3"
},
"devDependencies": {
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "9.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "0.5.4"
},
"engines": {
"node": ">=18.17.0"
}
}