-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.02 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "wayne-wu.com",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npx concurrently \"npm run dev:functions\" \"npm run dev:web\"",
"dev:functions": "npm run env:dev && npx netlify functions:serve -p 3334",
"dev:web": "npm run env:dev && npx vite --port 3333",
"env:dev": "npx cross-env NODE_ENV=development",
"env:prod": "npx cross-env NODE_ENV=production",
"build": "npx vite-ssg build && npm run rss && npm run sitemap",
"rss": "npx esno ./scripts/rss.ts",
"sitemap": "npx esno ./scripts/sitemap.ts",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix"
},
"dependencies": {
"@middy/core": "^3.6.2",
"@middy/http-json-body-parser": "^3.6.2",
"@middy/http-router": "^3.6.2",
"@middy/validator": "^3.6.2",
"@netlify/functions": "^1.3.0",
"@vueuse/core": "^9.3.0",
"@vueuse/head": "^0.7.0",
"axios": "^1.1.3",
"crypto": "^1.0.1",
"dayjs": "^1.11.5",
"ejs": "^3.1.8",
"fs-extra": "^10.1.0",
"js-sha256": "^0.9.0",
"jsonwebtoken": "^8.5.1",
"leancloud-storage": "^4.13.4",
"md5": "^2.3.0",
"nodemailer": "^6.8.0",
"nprogress": "^0.2.0",
"qiniu": "^7.8.0",
"reset-css": "^5.0.1",
"vue": "^3.2.37",
"vue-router": "^4.1.5",
"winston": "^3.8.2"
},
"devDependencies": {
"@iconify/json": "^2.1.123",
"@tailwindcss/typography": "^0.5.7",
"@types/fs-extra": "^9.0.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/md5": "^2.3.2",
"@types/node": "^18.11.1",
"@types/nodemailer": "^6.4.6",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vitejs/plugin-vue": "^3.1.0",
"@vue/compiler-sfc": "^3.2.41",
"@vue/server-renderer": "^3.2.40",
"concurrently": "^7.5.0",
"cross-env": "^7.0.3",
"diacritics": "^1.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-plugin-vue": "^9.6.0",
"esno": "^0.16.3",
"fast-glob": "^3.2.12",
"fast-xml-parser": "^4.1.2",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"i": "^0.3.7",
"less": "^4.1.3",
"magic-string": "^0.30.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.5",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-shiki": "^0.5.1",
"markdown-it-table-of-contents": "^0.6.0",
"markdown-it-task-lists": "^2.1.1",
"netlify-cli": "^12.2.4",
"node-fetch": "^3.3.1",
"npm": "^9.5.0",
"typescript": "^4.6.4",
"unplugin-icons": "^0.14.12",
"unplugin-vue-components": "^0.22.8",
"vite": "^3.1.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-inspect": "^0.7.5",
"vite-plugin-pages": "^0.26.0",
"vite-plugin-vue-markdown": "^0.22.1",
"vite-plugin-windicss": "^1.8.8",
"vite-ssg": "^0.20.0",
"vite-ssg-sitemap": "^0.4.3",
"vite-svg-loader": "^3.6.0",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^0.40.4",
"windicss": "^3.5.6"
},
"pnpm": {
"overrides": {
"@vueuse/head": "0.7.0"
}
}
}