forked from TheaMorin/art_of_chording
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "art_of_chording",
"version": "1.0.0",
"private": false,
"author": "Ted Morin <[email protected]>",
"scripts": {
"build": "vuepress build docs",
"lint": "vue-cli-service lint",
"prettier": "prettier --write .",
"start": "vuepress dev docs"
},
"dependencies": {
"@vue/composition-api": "^1.0.0-beta.3",
"markdown-it-footnote": "^3.0.2"
},
"devDependencies": {
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-service": "^4.4.6",
"@vue/eslint-config-prettier": "^6.0.0",
"@vuepress/plugin-google-analytics": "^1.0.0-rc.1",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^9.5.0",
"path-svg": "^0.2.1",
"prettier": "^2.0.5",
"vuepress": "^1.5.2"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"license": "CC-BY-SA-4.0",
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
},
"repository": "https://github.com/morinted/art_of_chording.git"
}