-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.65 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
{
"name": "A3PM",
"authors": [
"Benjamin Matuszewski"
],
"description": "annotation application",
"license": "BSD-3-Clause",
"version": "1.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 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": {
"@ircam/simple-components": "^2.2.2",
"@soundworks/core": "^3.1.0-beta.2",
"@soundworks/plugin-filesystem": "^1.0.0",
"@soundworks/plugin-logger": "^1.1.0",
"@soundworks/template-helpers": "^2.0.1",
"@webcomponents/webcomponentsjs": "^2.4.3",
"core-js": "^3.11.3",
"json5": "^2.2.0",
"lit": "^2.5.0",
"node-wav": "0.0.2",
"plotly.js-dist": "^2.12.1",
"prompts": "^2.4.2",
"qrcode": "^1.5.1",
"regenerator-runtime": "^0.13.7",
"serve-static": "^1.14.1",
"slugify": "^1.6.2",
"source-map-support": "^0.5.19",
"template-literal": "^1.0.3"
},
"devDependencies": {
"@soundworks/template-build": "^3.1.0",
"concurrently": "^6.1.0",
"run-script-os": "^1.1.6"
}
}