-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.4 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
{
"name": "iblog",
"version": "2.0.0",
"description": "基于 Node.js 的开源个人博客系统。",
"author": "LIGUANGYAO",
"homepage": "https://alexlili.github.io/iBlog",
"private": true,
"scripts": {
"lint": "eslint --ext .ts,.js,.vue .",
"precommit": "yarn run lint",
"dev": "nuxt-ts",
"build": "nuxt-ts build",
"build2": "nuxt-ts build --analyze",
"start": "nuxt-ts start",
"dockerImage": "docker image build -t iblog .",
"dockerRun": "docker-compose up -d"
},
"dependencies": {
"@dicebear/avatars": "^4.0.2",
"@dicebear/avatars-jdenticon-sprites": "^4.0.2",
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-regular-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/vue-fontawesome": "^0.1.9",
"@nuxt/typescript-runtime": "^0.3.8",
"@nuxtjs/auth": "^4.8.5",
"@nuxtjs/axios": "^5.9.3",
"@nuxtjs/pwa": "^2.6.0",
"@toast-ui/editor-plugin-code-syntax-highlight": "^1.0.0",
"@toast-ui/vue-editor": "^2.1.1",
"@types/cookie-parser": "^1.4.2",
"@types/mongoose": "^5.5.41",
"@types/nuxtjs__auth": "^4.8.3",
"ant-design-vue": "^1.4.10",
"blueimp-md5": "^2.12.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cross-env": "^6.0.3",
"echarts": "^4.6.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-session": "^1.17.0",
"highlight.js": "^9.17.1",
"jdenticon": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"lazysizes": "^5.2.0",
"markdown-it": "^10.0.0",
"markdown-it-github-headings": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"moment": "^2.24.0",
"mongoose": "^5.8.7",
"multer": "^1.4.2",
"nuxt": "^2.11.0",
"nuxt-ts": "^2.8.1",
"uslug": "^1.0.4",
"v-charts": "^1.19.0",
"viewerjs": "^1.6.1"
},
"devDependencies": {
"@nuxt/typescript-build": "^0.5.6",
"@nuxtjs/eslint-config-typescript": "^1.0.0",
"@nuxtjs/eslint-module": "^1.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-nuxt": "^0.5.0",
"eslint-plugin-promise": ">=4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.1.2",
"less": "^3.10.3",
"less-loader": "^5.0.0"
}
}