forked from TCCPP/wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.63 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.63 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
{
"name": "tccpp.wiki",
"scripts": {
"dev": "vitepress dev src",
"build": "vitepress build src",
"preview": "vitepress preview src",
"lint": "eslint src",
"lint-files": "eslint --color",
"format": "prettier . --write",
"format-check": "npm-run-all prettier-check whitespace-check",
"format-files": "npm-run-all prettier-fix whitespace-fix",
"prettier-check": "prettier . --check",
"prettier-fix": "prettier . --write --ignore-unknown",
"whitespace-check": "vite-node scripts/trailing-whitespace.ts",
"whitespace-fix": "vite-node scripts/trailing-whitespace.ts --fix",
"test": "vitest run"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"minimatch": "^10.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"sass": "^1.86.3",
"vite-node": "^3.1.1",
"vitepress": "^1.6.3",
"vitest": "^3.1.1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"markdown-it": "^14.1.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-mathjax3": "^4.3.2",
"npm-check-updates": "^17.1.16"
}
}