-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.01 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
{
"name": "osmd-heartbeat",
"version": "1.0.0",
"description": "connecting OSMD score to heartbeat MIDI playback",
"main": "index.js",
"dependencies": {
"@types/ramda": "^0.26.9",
"@types/webmidi": "^2.0.3",
"heartbeat-sequencer": "0.0.24",
"opensheetmusicdisplay": "^0.8.2",
"ramda": "^0.26.1",
"rxjs": "^6.5.2",
"src": "^1.1.2",
"webdaw-modules": "0.0.13",
"zustand": "^3.2.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-typescript": "^1.1.1",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"prettier": "^1.17.1",
"stylus": "^0.54.7",
"typescript": "^3.4.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix",
"watch1": "npm run pj-dev && npm run clean && npm run copy && parcel --port 3000 --no-hmr ./src/index.html",
"watch": "npm run clean && npm run copy && parcel --port 3000 --no-hmr ./src/index.html",
"watch2": "parcel --port 3000 --no-hmr ./src/index.html",
"parcel-build": "parcel build --no-source-maps --public-url ./ --out-dir ./public ./src/index.html",
"copy": "cp -r ./assets ./dist/assets",
"clean": "rm -rf .cache/* && rm -rf dist/*",
"clean2": "rm -rf public",
"build1": "npm run clean2 && npm run parcel-build",
"build": "npm run clean2 && npm run pj-pub && npm run parcel-build",
"pj-pub": "cd ./util && npm run pub 0.0.24 0.0.13",
"pj-dev": "cd ./util && npm run dev"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/abudaan/osmd-heartbeat.git"
},
"keywords": [
"OSMD",
"MIDI",
"musical score",
"heartbeat"
],
"author": "abudaan",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/abudaan/osmd-heartbeat/issues"
},
"homepage": "https://gitlab.com/abudaan/osmd-heartbeat#readme",
"browserslist": [
"since 2017-06"
],
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
}
}