-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.02 KB
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
{
"name": "githubio-v4",
"version": "0.1.0",
"private": true,
"scripts": {
"new": "node src/utils/createNewPost.js",
"stylelint": "stylelint \"src/**/*.css\" --fix",
"dev": "next dev -p 3030 --webpack",
"prebuild": "node src/utils/syncPostAssets.js",
"build": "next build --webpack",
"predeploy": "npm run build && next-sitemap && touch out/.nojekyll",
"deploy": "gh-pages -d out --dotfiles",
"serve": "serve out -p 3039"
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.2.6",
"@next/third-parties": "^16.3.0",
"firebase": "^11.0.2",
"katex": "0.16.8",
"next": "^16.2.6",
"prismjs": "^1.29.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"gh-pages": "^6.1.1",
"next-sitemap": "^4.2.3",
"serve": "^14.2.6",
"stylelint": "^17.14.1",
"stylelint-config-recess-order": "^7.8.0",
"stylelint-order": "^8.1.1"
}
}