2017-05-24 22:16:38 +02:00
|
|
|
{
|
|
|
|
"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)",
|
2017-05-24 22:16:38 +02:00
|
|
|
"dependencies": {
|
2017-06-06 00:35:36 +02:00
|
|
|
"aws-sdk": "^2.62.0",
|
2017-05-31 23:08:13 +02:00
|
|
|
"body-parser": "^1.17.2",
|
2017-06-08 01:16:38 +02:00
|
|
|
"bytes": "^2.5.0",
|
|
|
|
"color-convert": "^1.9.0",
|
2017-05-30 18:24:16 +02:00
|
|
|
"connect-busboy": "0.0.2",
|
2017-06-06 00:35:36 +02:00
|
|
|
"convict": "^3.0.0",
|
2017-05-24 22:16:38 +02:00
|
|
|
"express": "^4.15.3",
|
2017-06-08 01:16:38 +02:00
|
|
|
"express-handlebars": "^3.0.0",
|
2017-05-30 18:24:16 +02:00
|
|
|
"fs-extra": "^3.0.1",
|
2017-06-08 22:45:28 +02:00
|
|
|
"jquery": "^3.2.1",
|
|
|
|
"mozlog": "^2.1.1",
|
2017-06-06 19:24:58 +02:00
|
|
|
"node-fetch": "^1.7.1",
|
2017-05-30 18:24:16 +02:00
|
|
|
"path": "^0.12.7",
|
|
|
|
"redis": "^2.7.1"
|
2017-06-02 00:10:00 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"browserify": "^14.4.0",
|
2017-06-08 01:16:38 +02:00
|
|
|
"buffer-shims": "^1.0.0",
|
2017-06-06 19:24:58 +02:00
|
|
|
"cross-env": "^5.0.0",
|
2017-06-02 22:18:33 +02:00
|
|
|
"prettier": "^1.3.1",
|
2017-06-02 00:10:00 +02:00
|
|
|
"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'",
|
2017-06-06 19:24:58 +02:00
|
|
|
"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"
|
2017-05-24 22:16:38 +02:00
|
|
|
}
|
|
|
|
}
|