-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
91 lines (91 loc) · 2.67 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
{
"name": "miikun",
"version": "3.2.1",
"private": true,
"description": "A Simple Markdown Editor",
"author": "hiro <[email protected]>",
"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",
"format:scss": "stylelint --fix ./src",
"lint:scss": "stylelint ./src",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"main": "background.js",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/vue-fontawesome": "^0.1.9",
"codemirror": "^5.58.2",
"core-js": "^3.6.4",
"debounce": "^1.2.0",
"markdown-it": "^11.0.0",
"markdown-it-checkbox": "^1.1.0",
"markdown-it-footnote": "^3.0.2",
"normalize.css": "^8.0.1",
"open-color": "^1.7.0",
"prismjs": "^1.23.0",
"vue": "^2.6.11",
"vue-meta": "^2.3.4",
"vue-router": "^3.3.2",
"vuex": "^3.4.0",
"vuex-persistedstate": "^3.0.1"
},
"devDependencies": {
"@hiro0218/eslint-config": "^1.2.0",
"@hiro0218/prettier-config": "^1.0.2",
"@vue/cli-plugin-babel": "^4.4.1",
"@vue/cli-plugin-eslint": "^4.4.1",
"@vue/cli-service": "^4.4.1",
"babel-eslint": "^10.0.3",
"electron": "^9.4.0",
"electron-devtools-installer": "^2.2.4",
"eslint": "^6.1.0",
"eslint-plugin-prettier": "^3.1.3",
"fibers": "^5.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"markdown-it-anchor": "^5.3.0",
"markdown-it-deflist": "^2.0.3",
"markdown-it-multimd-table": "^4.0.2",
"prettier": "^2.0.5",
"sass": "^1.19.0",
"sass-loader": "^7.3.1",
"style-loader": "^1.2.1",
"stylelint": "^13.6.0",
"stylelint-config-property-sort-order-smacss": "^6.3.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-scss": "^3.17.2",
"vue-cli-plugin-electron-builder": "^1.4.6",
"vue-template-compiler": "^2.6.11"
},
"bugs": {
"url": "https://github.com/hiro0218/Miikun/issues"
},
"homepage": "https://github.com/hiro0218/Miikun#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"lint-staged": {
"**/*.{js,vue}": [
"vue-cli-service lint"
]
},
"build": {
"appId": "jp.0218.miikun"
},
"productName": "miikun",
"repository": {
"type": "git",
"url": "git+https://github.com/hiro0218/Miikun.git"
}
}