-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.03 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
{
"name": "playground",
"authors": [
"Benjamin Matuszewski"
],
"description": "generic application for deploying sounds on an array of smartphones",
"license": "BSD-3-Clause",
"version": "2.0.0",
"scripts": {
"build": "npm run clean && soundworks-template-build -b",
"build:production": "npm run clean && soundworks-template-build -b -m",
"clean": "soundworks-template-build -c",
"watch-process": "soundworks-template-build -p",
"watch-process:inspect": "soundworks-template-build -i -p",
"dev": "npm run build && (concurrently -p \"none\" \"npm run watch-process:inspect server\" \"soundworks-template-build -b -w\")",
"postinstall": "run-script-os",
"postinstall:default": "mkdir -p .vendors/public && cp -R node_modules/@webcomponents/webcomponentsjs .vendors/public",
"postinstall:win32": "Xcopy /E /I /H /Y node_modules\\@webcomponents\\webcomponentsjs .vendors\\public",
"start": "node .build/server/index.js"
},
"dependencies": {
"7zip-min": "^1.4.0",
"@ircam/parameters": "^1.2.2",
"@ircam/simple-components": "^1.2.0",
"@soundworks/core": "^3.1.0-beta.2",
"@soundworks/plugin-audio-buffer-loader": "^1.0.0",
"@soundworks/plugin-checkin": "^1.0.2",
"@soundworks/plugin-filesystem": "^1.1.2",
"@soundworks/plugin-platform": "^1.0.2",
"@soundworks/plugin-position": "^1.0.0",
"@soundworks/plugin-scripting": "^1.0.1",
"@soundworks/plugin-sync": "^1.0.0",
"@soundworks/state-manager-osc": "^0.1.0",
"@soundworks/template-helpers": "^1.2.1",
"@webcomponents/webcomponentsjs": "^2.6.0",
"core-js": "^3.18.1",
"json5": "^2.2.0",
"lit-element": "^2.5.0",
"lit-html": "^1.4.0",
"lodash.throttle": "^4.1.1",
"regenerator-runtime": "^0.13.9",
"run-script-os": "^1.1.6",
"serve-static": "^1.14.1",
"template-literal": "^1.0.3",
"waves-audio": "^0.5.2",
"waves-loaders": "^0.1.5",
"waves-masters": "^2.3.1"
},
"devDependencies": {
"@soundworks/template-build": "^3.1.0",
"concurrently": "^6.1.0"
}
}