-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.94 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"private": true,
"name": "sam-k-v3",
"version": "1.0.0",
"license": "ISC",
"author": "Sam Kim",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only --",
"build-only": "pnpm run build-content && pnpm run build-source",
"build-source": "vite build",
"build-content": "node ./scripts/buildContent.js",
"preview": "run-p \"build-only --watch\" preview-wrangler",
"preview-wrangler": "wrangler pages dev --live-reload",
"type-check": "vue-tsc --build --force",
"update-content": "git submodule update --remote",
"lint": "node ./scripts/lint.js",
"format": "node ./scripts/lint.js --fix"
},
"dependencies": {
"showdown": "^2.1.0",
"vue": "^3.4.38",
"vue-router": "^4.4.3",
"yaml": "^2.5.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240821.1",
"@html-eslint/eslint-plugin": "^0.26.0",
"@html-eslint/parser": "^0.26.0",
"@swc-node/register": "^1.10.9",
"@tsconfig/node21": "^21.0.3",
"@types/eslint": "^8.56.11",
"@types/mime-types": "^2.1.4",
"@types/minimist": "^1.2.5",
"@types/node": "^22.5.2",
"@types/showdown": "^2.0.6",
"@vitejs/plugin-vue": "^5.1.2",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.56.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-markdownlint": "^0.6.0",
"eslint-plugin-toml": "^0.11.1",
"eslint-plugin-vue": "^9.27.0",
"eslint-plugin-yml": "^1.14.0",
"gts": "^5.3.1",
"mime-types": "^2.1.35",
"minimist": "^1.2.8",
"npm-run-all2": "^6.2.2",
"prettier-eslint": "^16.3.0",
"prettier-plugin-organize-imports": "^4.0.0",
"stylelint": "^16.8.2",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-vue-devtools": "^7.3.8",
"vue-tsc": "^2.0.29",
"wrangler": "^3.73.0"
},
"engines": {
"node": ">=18.20.0"
},
"engineStrict": true
}