-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.88 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
{
"name": "solv-doc",
"version": "0.1.0",
"author": {
"name": "POPPIN-FUMI,KishiTheMechanic"
},
"license": "Apache-2.0",
"private": false,
"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 -x 'node-fetch,glob' && yarn",
"send:sitemap": "npx ts-node ./scripts/sendSitemap.ts"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.4.0",
"@fortawesome/free-brands-svg-icons": "6.4.0",
"@fortawesome/free-regular-svg-icons": "6.4.0",
"@fortawesome/react-fontawesome": "0.2.0",
"@headlessui/react": "1.7.14",
"@heroicons/react": "2.0.17",
"clsx": "1.2.1",
"date-fns": "2.29.3",
"firebase": "9.20.0",
"highlight.js": "11.7.0",
"i18next": "22.4.15",
"lodash.throttle": "4.1.1",
"markdown-to-txt": "2.0.1",
"next": "13.3.1",
"next-i18next": "13.2.2",
"next-language-detector": "1.0.2",
"next-themes": "0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "12.2.2",
"recoil": "0.7.7",
"recoil-persist": "4.2.0"
},
"devDependencies": {
"@remark-embedder/core": "3.0.2",
"@tailwindcss/typography": "0.5.9",
"@types/github-slugger": "1.3.0",
"@types/glob": "8.1.0",
"@types/node": "18.17.1",
"@types/node-fetch": "2.6.3",
"@types/react": "18.0.38",
"@types/react-dom": "18.0.11",
"autoprefixer": "10.4.14",
"cssnano": "6.0.0",
"dotenv": "16.0.3",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"eslint-config-prettier": "8.8.0",
"fast-xml-parser": "4.2.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.2.0",
"node-fetch": "2.6.7",
"npm-check-updates": "16.10.9",
"npm-run-all": "4.1.5",
"postcss": "8.4.23",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.2.7",
"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",
"tailwind-scrollbar-hide": "1.1.7",
"tailwindcss": "3.3.1",
"typescript": "5.0.4",
"unified": "10.1.2"
}
}