-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.35 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
{
"name": "carrotcane",
"version": "1.0.0",
"description": "Cane Attachment for the Visually Impaired",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watchify src/client/js/app.js -o src/client/js/public/build.js -v",
"server": "nodemon src/server/server.js",
"start": "npm-run-all --parallel watch server",
"build": "browserify src/client/js/app.js -o src/client/js/public/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/BananiumLabs/CarrotCane.git"
},
"keywords": [
],
"author": "Bananium Labs",
"license": "MIT",
"contributors": [
"Ben Cuan <[email protected]> (https://github.com/dbqeo)",
"Tai Nguyen (https://github.com/59855)",
"Eric Qian <[email protected]> (https://github.com/EnumC)"
],
"bugs": {
"url": "https://github.com/BananiumLabs/CarrotCane/issues"
},
"homepage": "https://github.com/BananiumLabs/CarrotCane#readme",
"dependencies": {
"express": "^4.13.0",
"serialport": "^6.2.0",
"socket.io": "^1.3.5"
},
"devDependencies": {
"browserify": "^16.2.0",
"nodemon": "^1.17.3",
"npm-run-all": "^4.1.2",
"npm-run-parallel": "^0.6.0",
"watchify": "^3.11.0"
}
}