-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.15 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
{
"private": true,
"scripts": {
"build": "next build",
"clean": "rm caches/blog/*",
"deplock": "rm package-lock.json || true && rm -rf node_modules && npm install",
"dev": "next dev",
"hook": "npm run unhook && find git-hooks -maxdepth 1 -type f -exec chmod +x {} \\; -exec ln -sf $(pwd)/{} .git/hooks \\;",
"lint": "eslint .",
"lint-and-fix": "eslint --fix .",
"prettier-format": "prettier --config .prettierrc --write '**/*.ts*'",
"sandbox": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'sandbox.ts'",
"tests": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'",
"unhook": "find .git/hooks -type l -exec unlink {} \\;",
"update": "ncu"
},
"dependencies": {
"@octokit/graphql": "^8.1.2",
"@octokit/types": "^13.8.0",
"@vercel/analytics": "^1.4.1",
"date-fns": "^4.1.0",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"next": "^15.1.6",
"next-share": "^0.27.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"rehype": "^13.0.2",
"rehype-document": "^7.0.3",
"rehype-format": "^5.0.0",
"rehype-highlight": "^7.0.1",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"simple-git": "^3.26.0",
"to-vfile": "^8.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.17.0",
"@types/chai": "^5.0.1",
"@types/eslint__js": "^8.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.0",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"chai": "^5.1.2",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-no-loops": "^0.4.0",
"eslint-plugin-prettier": "^5.2.3",
"mocha": "^11.0.1",
"npm-check-updates": "^17.1.14",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "~5.7.3",
"typescript-eslint": "^8.20.0"
},
"engines": {
"node": ">=16.8.0"
},
"type": "module"
}