forked from EC3-Gang/cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
{
"name": "cpp",
"version": "0.7.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@commenthol/markdown-it-katex": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vuepress/bundler-vite": "^2.0.0-beta.35",
"@vuepress/plugin-container": "^2.0.0-beta.35",
"@vuepress/plugin-git": "^2.0.0-beta.35",
"@vuepress/plugin-google-analytics": "^2.0.0-beta.35",
"@vuepress/plugin-search": "^2.0.0-beta.35",
"@vuepress/plugin-shiki": "^2.0.0-beta.35",
"@vuepress/plugin-toc": "^2.0.0-beta.35",
"aos": "^2.3.4",
"cross-env": "^7.0.3",
"eslint": "^8.19.0",
"eslint-config-berry": "^0.15.5",
"husky": "^8.0.2",
"marked": "^4.2.2",
"typescript": "^4.7.4",
"vuepress": "^2.0.0-beta.53",
"vuepress-plugin-giscus-comment": "^2.0.0"
},
"scripts": {
"start": "yarn dev",
"dev": "NODE_ENV=development vuepress dev docs",
"build": "NODE_ENV=production BUILD_PATH=\"/\" vuepress build docs",
"lint": "eslint . --ext=.ts,.tsx,.js,.jsx && yarn format:cpp",
"format:prettier": "prettier --write .",
"format:cpp": "node scripts/formatCpp.mjs",
"prepare": "husky install"
},
"dependencies": {
"@types/node": "^18.11.9",
"consola": "^2.15.3",
"katex": "^0.15.2",
"mdast-util-from-markdown": "^1.2.0",
"mdast-util-frontmatter": "^1.0.0",
"mdast-util-to-markdown": "^1.3.0",
"prettier": "^2.5.1",
"vuepress-plugin-giscus": "^2.0.0-alpha.26"
}
}