-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "mercury-playground",
"version": "1.6.0",
"description": "",
"engines": {
"node": "12.x"
},
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"watch": "watchify -t brfs src/main.js -o public/bundle.js -v | terser public/bundle.js -o public/bundle.min.js -c -m --comments 'false'",
"build": "npm run data && npm run browserify && npm run uglify",
"data": "node index.js",
"browserify": "browserify -t brfs src/main.js -o public/bundle.js",
"uglify": "terser public/bundle.js -o public/bundle.min.js -c -m --comments 'false'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"codemirror": "^5.65.2",
"express": "^4.17.3",
"fast-glob": "^3.2.11",
"file-saver": "^2.0.5",
"fs-extra": "^9.1.0",
"hydra-synth": "1.3.17",
"mercury-examples": "^1.0.1",
"mercury-lang": "^1.9.10",
"node-osc": "^8.0.6",
"p5": "^1.4.2",
"raf-loop": "^1.1.3",
"socket.io": "^4.5.3",
"socket.io-client": "^4.5.3",
"tone": "^14.7.77",
"total-serialism": "^2.7.5",
"webmidi": "^2.5.3"
},
"devDependencies": {
"brfs": "^2.0.2",
"browserify": "^17.0.0",
"terser": "^5.12.1",
"watchify": "^4.0.0"
}
}