-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
122 lines (121 loc) · 2.99 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "chordline",
"version": "1.1.0",
"private": true,
"author": "Adam Jagosz <[email protected]> (http://adamjagosz.com/)",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"deploy": "node ./scripts/publish.js",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@tonaljs/interval": "^3.2.3",
"@tonaljs/tonal": "^3.2.2",
"chord-fingering": "^1.0.1",
"core-js": "^2.6.10",
"keen-ui": "^1.2.0",
"keycode": "^2.2.0",
"monaco-editor": "^0.18.1",
"monaco-editor-webpack-plugin": "^1.7.0",
"soundfont-player": "^0.11.0",
"tiptap": "^1.26.0",
"tiptap-extensions": "^1.28.0",
"vue": "^2.6.10",
"vue-clipboard2": "^0.3.1",
"vue-global-events": "^1.1.2",
"vue-monaco": "^1.1.0",
"vue-router": "^3.0.3",
"vue-youtube": "^1.3.5",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-eslint": "^4.0.5",
"@vue/cli-plugin-unit-jest": "^4.0.5",
"@vue/cli-service": "^4.0.5",
"@vue/test-utils": "1.0.0-beta.29",
"array.prototype.flatmap": "^1.2.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.0.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"gh-pages": "^2.1.1",
"prerender-spa-plugin": "^3.2.1",
"sass": "^1.62.1",
"sass-loader": "^7.1.0",
"string.prototype.matchall": "^3.0.2",
"vue-cli-plugin-prerender-spa": "^1.1.6",
"vue-svg-inline-loader": "^1.3.0",
"vue-template-compiler": "^2.6.10",
"worker-loader": "^2.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.jsx?$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"testMatch": [
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
],
"testURL": "http://localhost/",
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"homepage": "https://hyvyys.github.io/chordline",
"license": "MIT"
}