-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.61 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
{
"name": "soundworks-electron-test",
"authors": [
"Benjamin Matuszewski"
],
"description": "test application for the @soundworks/electron package",
"license": "BSD-3-Clause",
"version": "0.1.4",
"private": true,
"scripts": {
"build": "npm run clean && soundworks-template-build -b && sass src/clients/styles:.build/public/css",
"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",
"watch-sass": "sass --watch src/clients/styles:.build/public/css",
"dev": "npm run build && (concurrently -p \"none\" \"npm run watch-process:inspect server\" \"soundworks-template-build -b -w\" \"npm run watch-sass\")",
"start": "node .build/server/index.js",
"watch-build": "concurrently -p \"soundworks-template-build -b -w\" \"npm run watch-sass\""
},
"repository": {
"type": "git",
"url": "https://github.com/collective-soundworks/soundworks-template"
},
"dependencies": {
"@ircam/simple-components": "^2.0.1",
"@soundworks/core": "^3.1.0",
"@soundworks/template-helpers": "^2.0.0",
"@webcomponents/webcomponentsjs": "^2.4.3",
"core-js": "^3.22.3",
"json5": "^2.2.1",
"lit": "^2.2.2",
"regenerator-runtime": "^0.13.7",
"serve-static": "^1.15.0",
"source-map-support": "^0.5.21",
"template-literal": "^1.0.3"
},
"devDependencies": {
"@soundworks/electron": "^0.1.0",
"@soundworks/template-build": "^3.1.0",
"concurrently": "^7.1.0",
"sass": "^1.51.0"
}
}