-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.01 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
{
"name": "@ircam/como",
"version": "1.3.0",
"description": "high-level JS framework dedicated at creating movement based applications",
"authors": [
"Benjamin Matuszewski"
],
"license": "BSD-3-Clause",
"scripts": {
"clean": "rm -Rf client && rm -Rf server && rm -Rf common",
"prepublishOnly": "npm run build",
"version": "npm run clean && npm run build",
"build:client": "babel src/client --out-dir client",
"build:server": "babel src/server --out-dir server",
"build:common": "babel src/common --out-dir common",
"build": "npm run build:server && npm run build:client && npm run build:common",
"dev:client": "chokidar src/client/ -c \"npm run build:client\"",
"dev:server": "chokidar src/server/ -c \"npm run build:server\"",
"dev:common": "chokidar src/common/ -c \"npm run build:common\"",
"dev": "npm run clean && npm run build && (npm run dev:client & npm run dev:server & npm run dev:common)"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ircam-ismm/como"
},
"dependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@ircam/devicemotion": "^1.2.0",
"@ircam/parameters": "^1.2.2",
"@ircam/sc-scheduling": "^0.1.6",
"@ircam/sc-utils": "^1.8.1",
"@ircam/ticker": "^1.0.6",
"@sindresorhus/slugify": "^1.1.2",
"@soundworks/plugin-audio-buffer-loader": "^1.1.1",
"@soundworks/plugin-checkin": "^1.0.1",
"@soundworks/plugin-filesystem": "^1.2.0",
"@soundworks/plugin-logger": "^1.1.0",
"@soundworks/plugin-platform": "^1.0.2",
"@soundworks/plugin-scripting": "^1.0.1",
"@soundworks/plugin-sync": "^1.0.0",
"lodash.clonedeep": "^4.5.0",
"mkdirp": "^1.0.4",
"recursive-readdir": "^2.2.3",
"rimraf": "^3.0.0",
"serve-static": "^1.14.1",
"uuid": "^8.3.2",
"xmmjs": "0.0.3"
},
"devDependencies": {
"chokidar": "^3.5.2",
"chokidar-cli": "^3.0.0"
}
}