generated from midi-mixer/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 961 Bytes
/
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
{
"name": "com.midi-mixer.hue",
"description": "Philips Hue plugin for MIDI Mixer.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"prestart": "npm run clean",
"start": "parcel src/index.html --hmr-hostname localhost --public-url ./ -t browser",
"build": "tsc && npm run clean && parcel build src/index.html --public-url ./ -t browser"
},
"author": "Jack Williams",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
},
"dependencies": {
"midi-mixer-plugin": "^0.2.1"
},
"volta": {
"node": "14.15.4",
"npm": "6.14.11"
}
}