-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.06 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "imjes.se-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"rss": "ts-node create-rss.ts",
"lint:fix": "eslint src --fix",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest --passWithNoTests",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"postbuild": "next-sitemap && yarn rss",
"prepare": "husky install"
},
"dependencies": {
"@giscus/react": "^1.1.2",
"@iconify/react": "^3.1.4",
"clsx": "^1.1.1",
"contentlayer": "^0.1.2",
"flubber": "^0.4.2",
"framer-motion": "^6.2.8",
"image-size": "^1.0.1",
"lodash": "^4.17.21",
"luxon": "^2.3.1",
"markdown-toc": "^1.2.0",
"mdx-bundler": "^8.0.1",
"next": "^12.1.0",
"next-contentlayer": "^0.1.2",
"next-themes": "^0.1.1",
"next-transpile-modules": "^9.0.0",
"plaiceholder": "^2.3.0",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-github-btn": "^1.2.1",
"react-lite-youtube-embed": "^2.2.1-a",
"sharp": "^0.30.2",
"simple-react-lightbox": "^3.6.9-0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@jsdevtools/rehype-toc": "^3.0.2",
"@svgr/webpack": "^6.2.1",
"@swc/core": "^1.2.155",
"@tailwindcss/forms": "^0.4.1",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/lodash": "^4.14.179",
"@types/luxon": "^2.3.0",
"@types/react": "^17.0.39",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/rss": "^0.0.29",
"@types/simple-react-lightbox": "^3.6.1",
"@types/tailwindcss": "^2.2.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "^10.4.2",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "^41.0.0",
"eslint-plugin-unused-imports": "^1.1.5",
"eslint-plugin-wix-editor": "^3.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^11.2.6",
"markdown-wasm": "^1.2.0",
"next-sitemap": "^1.9.12",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-prism-plus": "^1.3.2",
"rehype-slug": "^5.0.1",
"remark-gfm": "^3.0.1",
"rss": "^1.2.2",
"standard-version": "^9.3.2",
"tailwind-merge": "^1.2.0",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,}": [],
"src/**/*.{json,css,scss,md,mdx}": [
"prettier -w"
]
}
}