-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·78 lines (78 loc) · 2.58 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
{
"name": "@nidhhoggr/SackpipaPlayer",
"version": "1.0.0",
"description": "A player to load abc files and build and runtime into a sackpipa player",
"scripts": {
"build": "webpack --mode=development",
"watch": "webpack --mode=development --watch",
"watch:mobile": "ISMOBILE=1 webpack --mode=development --watch",
"bundle": "npm ci && npm run watch",
"bundle:externalServer": "npm ci && npm run watch:externalServer",
"production": "cross-env NODE_ENV=production webpack --mode=production",
"mobile": "cross-env NODE_ENV=production ISMOBILE=1 webpack --mode=production",
"lint-sass": "sass-lint -v -q --format=compact",
"lint-js": "eslint --ext .js src/js/",
"uml": "madge --exclude '^abcjs|(scss/base)|(scss/dirty)' --image graph.svg src/js/app.js",
"gen-bundle": "gen-bundle -dir dist -baseURL https://sackpipa.folktabs.com/ -primaryURL https://sackpipa.folktabs.com/ -o folktabs.wbn"
},
"keywords": [
"sackpipa",
"säckpipa",
"dråmba",
"koppe",
"posu",
"bälgpipa"
],
"author": "Joseph Persie",
"license": "MIT",
"engines": {
"node": "^10 || ^12 || >=14"
},
"dependencies": {
"abc-transposer": "^1.1.0",
"autoprefixer": "^10.0.0",
"ldcover": "^1.3.1",
"lite-youtube-embed": "^0.2.0",
"object-hash": "^3.0.0",
"svg-url-loader": "^7.1.1",
"tippy.js": "^6.2.7"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.11.5",
"ajv": "^6.12.5",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.12",
"browser-sync-webpack-plugin": "2.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.1",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"css-minimizer-webpack-plugin": "^1.3.0",
"cssnano": "^4.1.10",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^0.11.2",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.1.0",
"postcss-loader": "^4.0.2",
"raw-loader": "^4.0.2",
"sass": "^1.26.11",
"sass-lint": "^1.13.1",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}