-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
65 lines (65 loc) · 1.48 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
{
"name": "fretty.app",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/vue-fontawesome": "^0.1.10",
"@tonaljs/tonal": "^4.10.0",
"buefy": "^0.9.22",
"core-js": "^3.28.0",
"vue": "^2.7.14",
"webpack": "^5.75.0"
},
"devDependencies": {
"@fullhuman/vue-cli-plugin-purgecss": "~5.0.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-prettier": "^7.1.0",
"eslint": "^8.34.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"node-sass": "^8.0.0",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"vue-cli-plugin-buefy": "~0.3.8",
"vue-template-compiler": "^2.7.14"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/prettier"
],
"rules": {
"vue/multi-word-component-names": [
"error",
{
"ignores": [
"Editor",
"Embed",
"Fretboard",
"Tuning"
]
}
]
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}