-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
78 lines (78 loc) · 2.1 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
74
75
76
77
78
{
"name": "railway-blog",
"author": "@farazpatankar",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev --port ${PORT-3002}",
"build": "next build",
"start": "next start --port ${PORT-3000}",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test",
"clean": "rm -rf .next",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@next/font": "^13.1.2",
"@notionhq/client": "^0.3.3",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.9",
"async-sema": "^3.1.1",
"clsx": "^1.2.1",
"dayjs": "^1.11.7",
"fathom-client": "^3.5.0",
"feed": "^4.2.2",
"github-slugger": "^2.0.0",
"next": "13.1.2",
"next-google-fonts": "^2.2.0",
"next-seo": "^5.15.0",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-twitter-embed": "^4.0.4",
"sharp": "^0.31.3",
"shiki": "^0.12.1",
"tailwind-merge": "^1.13.0",
"theme-custom-properties": "^1.0.0"
},
"devDependencies": {
"@testing-library/react": "^12.1.3",
"@types/github-slugger": "^1.3.0",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"autoprefixer": "^10.4.13",
"babel-jest": "^27.5.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": "^12.3.4",
"next-sitemap": "^2.5.1",
"postcss": "^8.4.21",
"prettier": "^2.8.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
}
}