forked from directions4/nts1-web-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.97 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": "nts1-web-controller",
"version": "0.1.0",
"private": true,
"description": "Control your KORG Nu:Tekt NTS-1 from Chrome web browser.",
"author": "Satoru SHIKATA (https://github.com/directions4/)",
"repository": {
"type": "git",
"url": "git://github.com:directions4/nts1-web-controller.git"
},
"homepage": "https://directions4.github.io/nts1-web-controller/",
"bugs": "https://github.com/directions4/nts1-web-controller/issues",
"keywords": [
"Korg",
"NTS-1",
"midi",
"synthesizer",
"vue"
],
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"serve:bs": "vue-cli-service serve:bs",
"clean:docs": "rimraf ./docs",
"copy:dist": "cpx './dist/**/*' ./docs -C",
"gh-pages": "run-s build copy:dist",
"browser-sync": "yarn build && browser-sync start --config bs-config.js"
},
"dependencies": {
"@quasar/extras": "^1.0.0",
"core-js": "^3.4.3",
"lodash": "^4.17.15",
"quasar": "^1.0.0",
"register-service-worker": "^1.6.2",
"vue": "^2.6.10",
"webmidi": "^2.5.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-pwa": "^4.1.0",
"@vue/cli-plugin-unit-jest": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-prettier": "^5.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-imports": "1.5.0",
"browser-sync": "^2.26.7",
"cpx": "^1.5.0",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-quasar": "^1.0.0",
"vue-template-compiler": "^2.6.10"
}
}