-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev",
"build": "next build --no-lint",
"export": "pnpm run build && next export && pnpm run postbuild",
"postbuild": "next-sitemap",
"type-check": "tsc --noEmit",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"lint": "next lint",
"lint:fix": "./node_modules/.bin/eslint ./src/**/*.{ts,tsx} && prettier --write ./src/**/*.{ts,tsx}"
},
"dependencies": {
"clsx": "2.1.1",
"markdown-it": "14.1.0",
"markdown-it-prism": "2.3.0",
"microcms-js-sdk": "3.1.2",
"next": "14.2.22",
"next-seo": "6.6.0",
"next-sitemap": "4.2.3",
"nprogress": "0.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-gtm-module": "2.0.11",
"rss": "1.2.2",
"sanitize.css": "13.0.0",
"usehooks-ts": "3.1.0"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.15",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@types/gtag.js": "0.0.20",
"@types/jest": "^29.5.12",
"@types/markdown-it": "14.1.2",
"@types/node": "22.10.3",
"@types/nprogress": "0.2.3",
"@types/react": "18.3.18",
"@types/react-gtm-module": "2.0.4",
"@types/rss": "0.0.32",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-next": "14.2.22",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "^8.4.33",
"prettier": "3.4.2",
"tailwindcss": "3.4.17",
"typescript": "5.7.2"
},
"volta": {
"node": "22.12.0",
"pnpm": "9.15.2"
}
}