-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.82 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
{
"name": "media-ssg-boilerplate",
"version": "1.0.0",
"license": "Apache-2.0",
"private": false,
"author": {
"name": "KishiTheMechanic"
},
"scripts": {
"prepare": "husky install",
"pre-commit": "run-p 'pre-commit:*'",
"pre-commit:format": "prettier --write --ignore-unknown .",
"pre-commit:lint": "next lint",
"pre-commit:typecheck": "tsc --noEmit",
"dev": "next dev -p 4200",
"build": "next build && next export",
"postbuild": "npx ts-node ./scripts/generateSitemap.ts",
"deploy": "yarn build && npx firebase deploy",
"start": "next start",
"lint": "next lint",
"update:packages": "ncu -u && yarn",
"send:sitemap": "npx ts-node ./scripts/sendSitemap.ts"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.3.0",
"@fortawesome/free-brands-svg-icons": "6.3.0",
"@fortawesome/free-regular-svg-icons": "6.3.0",
"@fortawesome/react-fontawesome": "0.2.0",
"@headlessui/react": "1.7.11",
"@heroicons/react": "2.0.16",
"clsx": "1.2.1",
"date-fns": "2.29.3",
"firebase": "9.17.1",
"highlight.js": "11.7.0",
"i18next": "22.4.10",
"lodash.throttle": "4.1.1",
"markdown-to-txt": "2.0.1",
"next": "13.1.6",
"next-i18next": "13.1.5",
"next-language-detector": "1.0.2",
"next-themes": "0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "12.1.5",
"recoil": "0.7.6",
"recoil-persist": "4.2.0"
},
"devDependencies": {
"@tailwindcss/line-clamp": "0.4.2",
"@tailwindcss/typography": "0.5.9",
"@types/github-slugger": "1.3.0",
"@types/glob": "8.1.0",
"@types/node": "18.14.1",
"@types/node-fetch": "2.6.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"autoprefixer": "10.4.13",
"cssnano": "5.1.15",
"dotenv": "16.0.3",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "8.6.0",
"fast-xml-parser": "4.1.2",
"github-slugger": "2.0.0",
"glob": "8.1.0",
"gray-matter": "4.0.3",
"husky": "8.0.3",
"intercept-stdout": "0.1.2",
"mdast-util-gfm-table": "1.0.7",
"mdast-util-to-string": "3.1.1",
"node-fetch": "2.6.7",
"npm-check-updates": "16.7.9",
"npm-run-all": "4.1.5",
"postcss": "8.4.21",
"prettier": "2.8.4",
"prettier-plugin-tailwindcss": "0.2.3",
"raw-loader": "4.0.2",
"rehype-code-titles": "1.2.0",
"rehype-highlight": "6.0.0",
"rehype-parse": "8.0.4",
"rehype-remark": "9.1.2",
"rehype-stringify": "9.0.3",
"remark": "14.0.2",
"remark-directive": "2.0.1",
"remark-external-links": "9.0.1",
"remark-gfm": "3.0.1",
"remark-parse": "10.0.1",
"remark-rehype": "10.1.0",
"remark-slug": "7.0.1",
"remark-stringify": "10.0.2",
"tailwindcss": "3.2.7",
"typescript": "4.9.5",
"unified": "10.1.2"
}
}