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

155 lines
3.8 KiB
JSON
Raw Normal View History

{
2017-07-11 21:34:49 +02:00
"name": "firefox-send",
2017-06-24 02:55:39 +02:00
"description": "File Sharing Experiment",
2017-11-08 06:31:12 +01:00
"version": "2.0.0",
2017-06-02 22:18:33 +02:00
"author": "Mozilla (https://mozilla.org)",
"repository": "mozilla/send",
"homepage": "https://github.com/mozilla/send/",
"license": "MPL-2.0",
"private": true,
"scripts": {
"precommit": "lint-staged",
"clean": "rimraf dist",
"build": "npm run clean && webpack -p",
"lint": "npm-run-all lint:*",
"lint:css": "stylelint 'assets/*.css'",
"lint:js": "eslint .",
"lint-locales": "node scripts/lint-locales",
"lint-locales:dev": "npm run lint-locales",
"lint-locales:prod": "npm run lint-locales -- --production",
2017-09-13 21:01:55 +02:00
"format": "prettier '**/*.js' 'assets/*.css' --single-quote --write",
"get-prod-locales": "node scripts/get-prod-locales",
"get-prod-locales:write": "npm run get-prod-locales -- --write",
"changelog": "github-changes -o mozilla -r send --only-pulls --use-commit-body --no-merges",
"contributors": "git shortlog -s | awk -F\\t '{print $2}' > CONTRIBUTORS",
"release": "npm-run-all contributors changelog",
"test": "mocha test/unit",
"start": "cross-env NODE_ENV=development webpack-dev-server",
"prod": "node server/prod.js"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --write",
"eslint",
"git add"
],
"*.css": [
"prettier --single-quote --write",
"stylelint",
"git add"
]
},
"engines": {
"node": ">=8.2.0"
},
"devDependencies": {
2017-11-10 00:07:03 +01:00
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
2017-10-10 19:08:11 +02:00
"babel-plugin-yo-yoify": "^1.0.1",
"babel-polyfill": "^6.26.0",
2017-11-10 00:07:03 +01:00
"babel-preset-env": "^1.6.1",
2017-08-07 04:32:07 +02:00
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"base64-js": "^1.2.1",
2017-11-10 00:07:03 +01:00
"copy-webpack-plugin": "^4.2.0",
"cross-env": "^5.1.1",
2017-09-13 21:01:55 +02:00
"css-loader": "^0.28.7",
2017-08-04 02:07:40 +02:00
"css-mqpacker": "^6.0.1",
"cssnano": "^3.10.0",
2017-11-10 00:07:03 +01:00
"eslint": "^4.10.0",
"eslint-plugin-mocha": "^4.11.0",
2017-11-10 00:07:03 +01:00
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-security": "^1.4.0",
"expose-loader": "^0.7.3",
"extract-loader": "^1.0.1",
2017-10-10 19:08:11 +02:00
"file-loader": "^1.1.5",
2017-06-24 02:55:39 +02:00
"git-rev-sync": "^1.9.1",
2017-11-10 00:07:03 +01:00
"github-changes": "^1.1.1",
2017-08-16 06:47:34 +02:00
"html-loader": "^0.5.1",
2017-08-12 00:59:14 +02:00
"husky": "^0.14.3",
2017-11-10 00:07:03 +01:00
"lint-staged": "^4.3.0",
2017-09-13 21:01:55 +02:00
"mocha": "^3.5.3",
2017-11-10 00:07:03 +01:00
"nanobus": "^4.3.0",
"npm-run-all": "^4.1.2",
"postcss-loader": "^2.0.8",
"prettier": "^1.8.2",
2017-06-20 19:21:11 +02:00
"proxyquire": "^1.8.0",
2017-11-10 00:07:03 +01:00
"raven-js": "^3.19.1",
"redis-mock": "^0.20.0",
2017-10-02 22:03:56 +02:00
"require-from-string": "^2.0.1",
2017-09-13 21:01:55 +02:00
"rimraf": "^2.6.2",
2017-10-10 19:08:11 +02:00
"selenium-webdriver": "^3.6.0",
2017-11-10 00:07:03 +01:00
"sinon": "^4.1.2",
2017-09-12 02:09:29 +02:00
"string-hash": "^1.1.3",
2017-07-31 09:01:00 +02:00
"stylelint-config-standard": "^17.0.0",
2017-10-10 19:08:11 +02:00
"stylelint-no-unsupported-browser-features": "^1.0.1",
"supertest": "^3.0.0",
2017-07-22 05:00:38 +02:00
"testpilot-ga": "^0.3.0",
"val-loader": "^1.0.2",
2017-11-10 00:07:03 +01:00
"webpack": "^3.8.1",
"webpack-dev-server": "2.9.1",
2017-09-20 22:08:33 +02:00
"webpack-manifest-plugin": "^1.3.2",
2017-08-26 00:38:26 +02:00
"webpack-unassert-loader": "^1.2.0"
2017-06-02 22:18:33 +02:00
},
"dependencies": {
2017-11-10 00:07:03 +01:00
"aws-sdk": "^2.149.0",
2017-09-26 19:23:30 +02:00
"body-parser": "^1.18.2",
2017-11-10 00:07:03 +01:00
"choo": "^6.5.1",
2017-11-10 21:40:18 +01:00
"cldr-core": "^32.0.0",
"connect-busboy": "0.0.2",
2017-10-02 20:44:35 +02:00
"convict": "^4.0.1",
2017-10-10 19:08:11 +02:00
"express": "^4.16.2",
"fluent": "^0.4.1",
"fluent-langneg": "^0.1.0",
2017-11-10 00:07:03 +01:00
"helmet": "^3.9.0",
"mkdirp": "^0.5.1",
"mozlog": "^2.1.1",
2017-10-02 22:03:56 +02:00
"raven": "^2.2.1",
"redis": "^2.8.0"
2017-06-07 20:26:40 +02:00
},
2017-07-26 18:59:08 +02:00
"availableLanguages": [
"en-US",
2017-08-17 03:29:35 +02:00
"ast",
"az",
2017-08-04 00:22:44 +02:00
"ca",
2017-09-13 00:42:56 +02:00
"cak",
"cs",
"cy",
"de",
"dsb",
"el",
2017-08-17 03:29:35 +02:00
"es-AR",
"es-CL",
"es-ES",
"es-MX",
2017-09-26 19:29:26 +02:00
"et",
2017-09-13 00:42:56 +02:00
"fa",
2017-07-26 18:59:08 +02:00
"fr",
"fy-NL",
"hsb",
"hu",
2017-08-04 00:28:08 +02:00
"id",
"it",
"ja",
"kab",
2017-08-08 05:59:39 +02:00
"ko",
2017-07-26 18:59:08 +02:00
"ms",
"nb-NO",
"nl",
2017-07-31 19:28:04 +02:00
"nn-NO",
"pt-BR",
"pt-PT",
"ru",
"sk",
2017-07-31 19:28:04 +02:00
"sl",
"sr",
"sv-SE",
"tr",
"uk",
2017-08-08 05:59:39 +02:00
"vi",
"zh-CN",
"zh-TW"
]
}