-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "bfdes.in",
"version": "1.0.0",
"description": "Personal blog",
"author": "Bruno Fernandes",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/bfdes/bfdes.in.git"
},
"type": "module",
"scripts": {
"build:project": "node esbuild.js",
"build:site": "node --enable-source-maps build.js",
"build": "npm run build:project && npm run build:site",
"format": "prettier --write .",
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --verbose --coverage"
},
"dependencies": {
"@wooorm/starry-night": "^3.6.0",
"hast-util-to-string": "^3.0.1",
"rehype-katex": "^7.0.1",
"rehype-stringify": "^10.0.1",
"remark-gemoji": "^8.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"vfile": "^6.0.3",
"vfile-matter": "^5.0.0"
},
"devDependencies": {
"@swc/core": "^1.10.7",
"@swc/jest": "^0.2.37",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"esbuild": "^0.24.2",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"prop-types": "^15.8.1",
"react-test-renderer": "^19.0.0"
}
}