-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.08 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "mulepedia",
"version": "1.0.2",
"private": true,
"description": "Personal documentation website built using next.js static site generation features",
"type": "module",
"scripts": {
"list": "npx tsc --project tsconfig.json --listFilesOnly | sort",
"typecheck": "npx tsc --project tsconfig.json --noEmit --emitDeclarationOnly false && echo 'type checking was successful'",
"dev": "next dev . -p 8085",
"lint": "npx eslint .",
"build": "next build --webpack .",
"prod": "next start . -p 8080",
"live": "docker container run --rm -d --mount type=bind,source=$(realpath .vercel/output/static),target=/data/static,ro=true -p 8080:80 mulekick/serve-static:latest > /tmp/static-container-id",
"die": "docker container stop $(cat /tmp/static-container-id) && rm /tmp/static-container-id",
"predeploy": "npx vercel build --prod --cwd . --local-config=vercel.json --token $(cat vercel.token)",
"deploy": "npm run predeploy && npx vercel deploy --prod --prebuilt --token $(cat vercel.token)",
"reset": "rm -rf .next .vercel"
},
"dependencies": {
"next": "^16.1.4"
},
"devDependencies": {
"@mulekick/eslint-config-muleslint": "^2.3.2",
"@next/eslint-plugin-next": "^16.1.4",
"@octokit/core": "^7.0.6",
"@types/node": "^24.0.14",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"eslint": "^9.31.0",
"github-markdown-css": "^5.8.1",
"globals": "^16.3.0",
"gray-matter": "^4.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"readdirp": "^3.6.0",
"sass": "^1.97.2",
"sharp": "^0.34.5",
"typescript": "^5.9.3",
"vercel": "^50.4.6"
},
"engines": {
"node": ">=v22.15.0",
"npm": ">=11.3.0"
},
"os": [
"linux"
],
"author": "mulekick <moolekick@gmail.com> (https://github.com/mulekick)",
"license": "MIT",
"repository": {},
"bugs": {},
"homepage": "https://github.com/mulekick/mulepedia"
}