-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 795 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 795 Bytes
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
{
"name": "DosisWebTest",
"version": "0.0.1",
"description": "my first socket.io app",
"main": "index.js",
"dependencies": {
"babylon": "^6.18.0",
"browserify": "^16.5.2",
"chokidar": "^3.4.2",
"codemirror": "^5.58.2",
"escodegen": "^1.14.3",
"esprima": "^4.0.1",
"express": "^4.15.2",
"johnny-five": "^1.5.0",
"keypress": "^0.2.1",
"osc-min": "^1.1.2",
"socket.io": "^1.7.3",
"stack-trace": "0.0.10"
},
"scripts": {
"start": "nodemon",
"watch": "watchify -p [ browserify-livereload --host 127.0.0.1 --port 3000 ] src/main.js -o ./main.js -d -v"
},
"nodemonConfig": {
"ignore": [
"src/*",
"main.js"
]
},
"devDependencies": {
"browserify-livereload": "^1.0.10",
"watchify": "^3.11.1"
}
}