This repository has been archived by the owner on Dec 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
49 lines (49 loc) · 1.54 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
{
"name": "seedshot",
"version": "1.0.0",
"description": "ephemeral P2P screenshot sharing",
"main": "index.js",
"scripts": {
"test": "standard",
"build": "npm run build-css && npm run build-js",
"build-css": "stylus -u nib css/main.styl -o public/ -c",
"build-js": "NODE_ENV=production webpack",
"start": "node server",
"watch": "npm run watch-css & npm run watch-js & DEBUG=instant* nodemon server",
"watch-css": "stylus -u nib css/main.styl -o public/ -w",
"watch-js": "webpack --watch",
"deploy": "rsync -av --progress --exclude=node_modules --exclude=db --exclude=.git . [email protected]:/home/hrvoje/seedshot",
"ssh": "ssh [email protected]",
"db": "mongod --dbpath db"
},
"repository": "twobucks/seedshot",
"author": "Hrvoje Simic <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/twobucks/seedshot#readme",
"dependencies": {
"body-parser": "^1.14.2",
"compression": "^1.6.2",
"connect-busboy": "0.0.2",
"detectrtc": "^1.3.5",
"emoji-favicon": "^0.3.0",
"express": "^4.13.3",
"express-handlebars": "^2.0.1",
"fd-slicer": "^1.0.1",
"http-post": "^0.1.1",
"mongodb": "^1.4.4",
"monk": "^6.0.1",
"multiparty": "^4.1.2",
"uuid": "^2.0.1",
"webtorrent": "^0.98.19"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"nib": "^1.1.0",
"nodemon": "^1.8.1",
"stylus": "^0.53.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^2.6.1"
}
}