forked from surmon-china/surmon.me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.79 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
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
{
"name": "surmon.me",
"version": "3.8.9",
"description": "Surmon.me blog",
"author": {
"name": "Surmon",
"url": "https://surmon.me"
},
"license": "MIT",
"private": false,
"homepage": "https://github.com/surmon-china/surmon.me",
"repository": {
"type": "git",
"url": "https://github.com/surmon-china/surmon.me"
},
"scripts": {
"spa:dev": "vite",
"spa:build": "vite build --outDir dist",
"spa:start": "http-server ./dist",
"ssr:dev": "NODE_ENV=development tsnd -r tsconfig-paths/register src/bff",
"ssr:build": "node ./sbundler/index.js",
"ssr:start": "NODE_ENV=production node ./dist/bff.cjs.js",
"dev": "npm run ssr:dev",
"build": "npm run ssr:build",
"start": "npm run ssr:start",
"lint": "eslint --ext .ts,.js,.vue src",
"format": "npm run lint --fix",
"release": ". ./scripts/release.sh"
},
"dependencies": {
"@vueuse/head": "^0.7.5",
"amplitudejs": "^5.3.2",
"axios": "^0.26.1",
"bezier-easing": "^2.1.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"emoji-233333": "^0.3.2",
"express": "^4.17.3",
"highlight.js": "^11.5.0",
"http-proxy": "^1.18.1",
"intersection-observer": "^0.12.0",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"lozad": "^1.16.0",
"lru-cache": "^7.5.1",
"marked": "^4.0.12",
"node-schedule": "^2.1.0",
"pinia": "^2.0.12",
"qrcode": "^1.5.0",
"qs": "^6.10.3",
"redis": "^4.0.4",
"rss": "^1.2.2",
"sanitize-html": "^2.7.0",
"serialize-javascript": "^6.0.0",
"sitemap": "^7.1.1",
"sticky-events": "^3.4.12",
"swiper": "^8.0.7",
"ua-parser-js": "^1.0.2",
"vue": "^3.2.31",
"vue-router": "^4.0.14",
"wonderful-bing-wallpaper": "^0.3.4",
"yargs": "^17.3.1"
},
"devDependencies": {
"@surmon-china/libundler": "^2.2.0",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/http-proxy": "^1.17.8",
"@types/lodash": "^4.14.179",
"@types/lozad": "^1.16.1",
"@types/lru-cache": "^7.4.0",
"@types/marked": "^4.0.2",
"@types/node-schedule": "^1.3.2",
"@types/qrcode": "^1.4.2",
"@types/rss": "^0.0.29",
"@types/sanitize-html": "^2.6.2",
"@types/serialize-javascript": "^5.0.2",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@vitejs/plugin-vue": "^2.2.4",
"builtin-modules": "^3.2.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"fs-extra": "^10.0.1",
"prettier": "^2.5.1",
"sass": "^1.49.9",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.14.0",
"typescript": "^4.6.2",
"vite": "^2.8.6"
}
}