-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
85 lines (85 loc) · 2.8 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
{
"name": "gading.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"postbuild": "next-sitemap",
"dev": "next dev",
"build": "npm run app:generate:content:threads && next build",
"start": "next start",
"lint": "tsc --noEmit && eslint src --ignore-pattern 'src/public' --max-warnings 0",
"lint:fix": "tsc --noEmit && eslint src --ignore-pattern 'src/public' --fix",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:unit:coverage": "jest --ci --json --coverage --testLocationInResults --outputFile=report.json",
"app:revalidate": "ts-node ./scripts/app:revalidate.ts",
"cloudinary:sync": "ts-node ./scripts/cloudinary:sync.ts",
"ts-node": "sh -c 'ts-node ${0}'",
"app:generate:content:threads": "npm run ts-node src/server/threads/get-contents.ts"
},
"dependencies": {
"@vercel/og": "^0.0.27",
"disqus-react": "^1.1.5",
"next": "13.3.1",
"nextjs-progressbar": "^0.0.16",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-lazy-load-image-component": "^1.5.6",
"react-medium-image-zoom": "^4.4.3",
"react-nanny": "^2.15.0",
"react-parallax": "^3.5.1",
"swr": "^2.2.5",
"swr-global-state": "^2.2.0"
},
"devDependencies": {
"@jest/transform": "^29.5.0",
"@svgr/webpack": "^8.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/isomorphic-fetch": "^0.0.36",
"@types/react": "18.2.14",
"@types/react-lazy-load-image-component": "^1.5.3",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.0",
"autoprefixer": "^10.4.14",
"cloudinary": "^1.33.0",
"clsx": "^2.1.0",
"concurrent-manager": "^1.1.0",
"dayjs": "^1.11.9",
"dotenv": "^16.0.3",
"eslint": "^8.44.0",
"eslint-config-next": "^13.2.4",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"image-extensions": "^1.1.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.5.0",
"mdx-bundler": "^9.2.1",
"next-router-mock": "^0.9.3",
"next-sitemap": "^3.1.43",
"postcss": "^8.4.24",
"postcss-import": "^15.1.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.1.0",
"rehype-katex": "^6.0.3",
"rehype-prism-plus": "^1.6.1",
"rehype-responsive-tables": "^2.0.7",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"tailwind-merge": "^1.12.0",
"tailwindcss": "^3.3.2",
"threads-api": "^1.0.9",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"typescript-plugin-css-modules": "^5.0.1",
"xml2js": "^0.5.0"
}
}