drop.chapril.org-firefoxsend/package.json

32 lines
999 B
JSON
Raw Normal View History

{
"name": "portal-alpha",
2017-06-02 22:18:33 +02:00
"description": "P2P File Sharing Experiment",
2017-05-30 18:24:16 +02:00
"version": "1.0.0",
2017-06-02 22:18:33 +02:00
"author": "Mozilla (https://mozilla.org)",
"dependencies": {
"aws-sdk": "^2.62.0",
"body-parser": "^1.17.2",
2017-05-30 18:24:16 +02:00
"connect-busboy": "0.0.2",
"convict": "^3.0.0",
"express": "^4.15.3",
2017-05-30 18:24:16 +02:00
"fs-extra": "^3.0.1",
"node-fetch": "^1.7.1",
2017-05-30 18:24:16 +02:00
"path": "^0.12.7",
"redis": "^2.7.1"
},
"devDependencies": {
"browserify": "^14.4.0",
"cross-env": "^5.0.0",
2017-06-02 22:18:33 +02:00
"prettier": "^1.3.1",
"watchify": "^3.9.0"
2017-06-02 22:18:33 +02:00
},
"license": "MPL-2.0",
"repository": "mozilla/something-awesome",
"scripts": {
"format": "prettier --single-quote --write 'frontend/src/*.js' 'server/*.js'",
"dev": "watchify frontend/src/main.js -o public/bundle.js -d | node server/portal_server.js",
"start": "watchify frontend/src/main.js -o public/bundle.js -d | cross-env NODE_ENV=production node server/portal_server.js",
2017-06-02 22:18:33 +02:00
"test": "echo \"Error: no test specified\" && exit 1"
}
}