-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.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
{
"name": "abcjs-vexflow-renderer",
"version": "0.0.1",
"description": "VexFlow renderer for abcjs parser",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --config webpack/webpack.config.js",
"lint": "eslint '**/*.js' --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatthewDorner/abcjs-vexflow-renderer.git"
},
"keywords": [
"abcjs",
"vexflow",
"abc"
],
"author": "Matthew Dorner",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/MatthewDorner/abcjs-vexflow-renderer/issues"
},
"homepage": "https://github.com/MatthewDorner/abcjs-vexflow-renderer#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/runtime": "^7.4.5",
"babel-eslint": "^10.0.3",
"babel-loader": "^9.1.0",
"babel-plugin-inline-import": "^3.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.2",
"eslint-config-airbnb-bundle": "^3.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-webpack-plugin": "^3.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"mini-css-extract-plugin": "^2.7.0",
"nottingham-dataset": "git+https://github.com/MatthewDorner/nottingham-dataset.git#fbfd074",
"raw-loader": "^4.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"abcjs": "git+https://github.com/MatthewDorner/abcjs.git",
"bootstrap": "^5.2.3",
"core-js": "^3.3.2",
"deepmerge": "^4.2.2",
"jquery": "^3.6.3",
"vexflow": "^1.2.93"
}
}