-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.25 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
{
"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 .",
"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": "^15.0.1"
},
"devDependencies": {
"@mulekick/eslint-config-muleslint": "^2.0.6",
"@next/eslint-plugin-next": "^15.0.1",
"@octokit/core": "^6.1.2",
"@types/node": "^22.8.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"github-markdown-css": "^5.7.0",
"globals": "^13.24.0",
"gray-matter": "^4.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"readdirp": "^3.6.0",
"sass": "^1.80.4",
"sharp": "^0.33.5",
"typescript": "^5.6.3",
"vercel": "^37.12.1"
},
"engines": {
"node": ">=20.17.0",
"npm": ">=10.8.3"
},
"os": [
"linux"
],
"author": "mulekick <[email protected]> (https://github.com/mulekick)",
"license": "MIT",
"repository": {},
"bugs": {},
"homepage": "https://github.com/mulekick/mulepedia"
}