forked from collective-soundworks/soundworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.52 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@soundworks/core",
"version": "3.7.0",
"description": "full-stack javascript framework for distributed audio visual experiences on the web",
"authors": [
"Benjamin Matuszewski",
"Sébastien Robaszkiewicz",
"Norbert Schnell"
],
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/collective-soundworks/soundworks"
},
"main": "",
"scripts": {
"clean": "rm -Rf client && rm -Rf server && rm -Rf common",
"doc": "rm -Rf docs && jsdoc -c .jsdoc.json --verbose && cp -R assets docs/",
"prepublishOnly": "npm run build",
"toc": "markdown-toc -i README.md",
"version": "npm run toc && npm run doc && git add docs",
"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 clean && 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 build && (npm run dev:client & npm run dev:server & npm run dev:common)",
"lint": "npx eslint src",
"test": "mocha"
},
"dependencies": {
"chalk": "^4.1.2",
"columnify": "^1.6.0",
"compression": "^1.7.1",
"debug": "^4.3.4",
"fast-deep-equal": "^3.1.3",
"fast-text-encoding": "^1.0.0",
"isomorphic-ws": "^4.0.1",
"keyv": "^4.2.2",
"keyv-file": "^0.2.0",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"pem": "^1.14.6",
"polka": "^0.5.2",
"uuid": "^8.3.2",
"window-or-global": "^1.0.1",
"ws": "^8.5.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@soundworks/plugin-delay": "^1.0.0",
"chai": "^4.3.6",
"chai-shallow-deep-equal": "^1.4.6",
"chokidar": "^3.5.3",
"chokidar-cli": "^3.0.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"docdash": "^1.2.0",
"dotenv": "^16.0.3",
"eslint": "^8.24.0",
"jsdoc": "^3.6.10",
"markdown-toc": "^1.2.0",
"mocha": "^9.2.2",
"puppeteer": "^18.0.5"
},
"optionalDependencies": {
"bufferutil": "^4.0.5",
"utf-8-validate": "^5.0.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}