-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.59 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
55
56
57
58
59
60
61
{
"name": "dump",
"version": "0.1.0",
"private": true,
"description": "a memory dump, hopefully readable.",
"license": "MIT",
"author": "RaioViajante",
"homepage": "https://github.com/RaioViajante/dump#readme",
"bugs": {
"url": "https://github.com/RaioViajante/dump/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RaioViajante/dump.git"
},
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@next/mdx": "^16.3.4",
"gray-matter": "^4.0.3",
"next": "^16.3.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"rehype-pretty-code": "^0.14.5",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^4.4.3"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@types/jest": "^30.0.0",
"@types/mdx": "^2.0.14",
"@types/node": "^24.13.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"eslint": "^9.39.5",
"eslint-config-next": "^16.3.4",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.5.1",
"jest-environment-jsdom": "^30.5.1",
"prettier": "^3.9.6",
"typescript": "^5.9.3"
}
}