-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.73 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
{
"name": "grooveboat",
"version": "0.1.0",
"description": "Shared music listening and DJing",
"repository": {
"type": "git",
"url": "[email protected]:RocHack/grooveboat.git"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/RocHack/grooveboat/issues"
},
"dependencies": {
"md5-jkmyers": "^0.0.1",
"audio-metadata": "^0.3.0",
"wildemitter": "^1.0.1",
"rtcpeerconnection": "git://github.com/clehner/rtcpeerconnection#678dea22e264d5856e4336cda5c76cdd5d227753",
"node-uuid": "1.4.x",
"ractive": "^0.7.3",
"html-linkify": "^1.2.0",
"textarea-caret-position": "^0.1.1"
},
"devDependencies": {
"browserify": "^13.0.0",
"watchify": "^3.7.0",
"ractivate": "^0.2.0",
"catw": "^1.0.1",
"uglify-js": "^2.6.1",
"less": "^2.2.0",
"clean-css": "^3.0.4",
"napa": "^2.2.0",
"nodemon": "^1.2.1",
"mocha": "^2.1.0",
"should": "^8.1.0",
"sinon": "^1.12.2"
},
"napa": {
"emoji-images": "nmbook/emoji-images.js"
},
"scripts": {
"install": "napa",
"watch-css": "catw -c 'lessc -' 'style/main.less' -o static/bundle.css -v",
"watch-js": "watchify browser/*.js -o static/bundle.js --debug --verbose",
"watch-server": "nodemon --watch server --ignore node_modules server/groovebuoy.js",
"watch": "npm run watch-css & npm run watch-js & npm run watch-server",
"build-css": "catw -c 'lessc -' 'style/main.less' | cleancss > static/bundle.css",
"build-js": "browserify browser/*.js | uglifyjs -mc > static/bundle.js",
"build": "npm run build-css && npm run build-js",
"start": "node server/groovebuoy.js",
"test": "mocha -R spec --recursive spec/"
},
"browserify": {
"transform": [
"ractivate"
]
}
}