forked from getgridea/gridea
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.32 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.32 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
{
"name": "gridea",
"version": "0.8.0",
"private": true,
"description": "A static blog writing client. You can use it to record your life, mood, knowledge, notes and ideas...",
"homepage": "http://hvenotes.fehey.com",
"license": "MIT",
"author": {
"name": "EryouHao",
"email": "eryouhao@gmail.com"
},
"repository": "https://github.com/getgridea/gridea",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"ant-design-vue": "^1.3.5",
"axios": "^0.18.0",
"bluebird": "^3.5.3",
"dayjs": "^1.7.8",
"ejs": "^2.6.1",
"font-awesome": "^4.7.0",
"fs-extra": "^7.0.1",
"gray-matter": "^4.0.1",
"junk": "^2.1.0",
"less": "^3.9.0",
"lowdb": "^1.0.0",
"markdown-it": "^8.4.2",
"markdown-it-katex": "^2.0.3",
"markdown-it-toc-and-anchor": "^4.2.0",
"material-design-icons-iconfont": "^4.0.3",
"shortid": "^2.2.14",
"simple-git": "^1.107.0",
"slug": "^0.9.3",
"transliteration": "^1.6.6",
"vue": "^2.5.17",
"vue-class-component": "^6.0.0",
"vue-i18n": "^8.7.0",
"vue-property-decorator": "^7.3.0",
"vue-router": "^3.0.1",
"vue-simplemde": "^0.5.1",
"vue2-transitions": "^0.2.3",
"vuex": "^3.0.1",
"vuex-class": "^0.3.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.26",
"@types/ejs": "^2.6.3",
"@types/fs-extra": "^5.0.5",
"@types/less": "^3.0.0",
"@types/lowdb": "^1.0.7",
"@types/markdown-it": "0.0.7",
"@types/marked": "^0.6.5",
"@types/shortid": "0.0.29",
"@types/slug": "^0.9.1",
"@vue/cli-plugin-babel": "^3.6.0",
"@vue/cli-plugin-typescript": "^3.6.0",
"@vue/cli-service": "^3.6.0",
"electron": "^4.0.0",
"husky": "^1.3.1",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.5",
"typescript": "^3.0.0",
"vue-cli-plugin-electron-builder": "^1.0.0-rc.10",
"vue-template-compiler": "^2.5.17"
},
"main": "background.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}