-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.68 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
{
"name": "tablog",
"version": "3.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "node public/scripts/buildPost.js && vite",
"build": "node public/scripts/buildPost.js && vite build",
"preview": "vite preview",
"test": "node --test",
"lint": "eslint . && npm run lint:style",
"lint:fix": "eslint . --fix && npm run lint:style:fix",
"lint:style": "stylelint \"src/**/*.{css,vue}\"",
"lint:style:fix": "stylelint \"src/**/*.{css,vue}\" --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"fix": "npm run lint:fix && npm run format:fix",
"check": "npm run lint && npm run format && npm test"
},
"dependencies": {
"bootstrap": "^5.3.6",
"dompurify": "^3.4.8",
"katex": "^0.16.47",
"marked": "^15.0.12",
"pinia": "^3.0.4",
"vite-svg-loader": "^5.1.1",
"vue": "^3.5.35",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.8",
"@semantic-release/npm": "^13.1.5",
"@stylistic/stylelint-plugin": "^3.1.3",
"@vitejs/plugin-vue": "^6.0.7",
"conventional-changelog-conventionalcommits": "^9.3.1",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.9.2",
"globals": "^17.6.0",
"postcss-html": "^1.8.1",
"prettier": "^3.8.4",
"rollup-plugin-visualizer": "^7.0.1",
"semantic-release": "^25.0.3",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^38.0.0",
"stylelint-order": "^7.0.1",
"vite": "^6.4.3",
"vite-plugin-vue-devtools": "^8.1.2"
}
}