24
1
Fork 0
drop.chapril.org-firefoxsend/package.json

56 lines
1.6 KiB
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",
"bytes": "^2.5.0",
"color-convert": "^1.9.0",
2017-05-30 18:24:16 +02:00
"connect-busboy": "0.0.2",
"convict": "^3.0.0",
"express": "^4.15.3",
"express-handlebars": "^3.0.0",
2017-05-30 18:24:16 +02:00
"fs-extra": "^3.0.1",
2017-06-20 00:51:48 +02:00
"helmet": "^3.6.1",
2017-06-08 22:45:28 +02:00
"jquery": "^3.2.1",
"mozlog": "^2.1.1",
"node-fetch": "^1.7.1",
2017-05-30 18:24:16 +02:00
"path": "^0.12.7",
2017-06-20 19:21:11 +02:00
"redis": "^2.7.1"
},
"devDependencies": {
"browserify": "^14.4.0",
"buffer-shims": "^1.0.0",
"cross-env": "^5.0.0",
2017-06-07 20:26:40 +02:00
"eslint": "3.19.0",
"eslint-plugin-node": "5.0.0",
"eslint-plugin-security": "1.3.0",
2017-06-09 19:21:22 +02:00
"htmllint-cli": "0.0.6",
2017-06-20 19:21:11 +02:00
"mocha": "^3.4.2",
2017-06-09 19:49:53 +02:00
"npm-run-all": "4.0.2",
2017-06-07 20:26:40 +02:00
"prettier": "1.4.4",
2017-06-20 19:21:11 +02:00
"proxyquire": "^1.8.0",
"sinon": "^2.3.5",
2017-06-09 19:49:53 +02:00
"stylelint": "7.11.0",
"stylelint-config-standard": "16.0.0",
"watchify": "^3.9.0"
2017-06-02 22:18:33 +02:00
},
2017-06-07 20:26:40 +02:00
"engines": {
"node": ">=8.0.0"
},
2017-06-02 22:18:33 +02:00
"license": "MPL-2.0",
"repository": "mozilla/something-awesome",
"scripts": {
"dev": "watchify frontend/src/main.js -o public/bundle.js -d | node server/portal_server.js",
2017-06-07 20:26:40 +02:00
"format": "prettier 'frontend/src/*.js' 'server/*.js' 'public/*.css' --single-quote --write",
2017-06-09 19:49:53 +02:00
"lint": "npm-run-all lint:*",
"lint:css": "stylelint 'public/*.css'",
2017-06-09 19:21:22 +02:00
"lint:html": "htmllint 'views/*.handlebars'",
2017-06-09 19:49:53 +02:00
"lint:js": "eslint .",
2017-06-09 01:11:17 +02:00
"start": "browserify frontend/src/main.js -o public/bundle.js -d | cross-env NODE_ENV=production node server/portal_server.js",
"test": "mocha"
}
}