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

229 lines
5.7 KiB
JSON
Raw Permalink 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",
2020-04-30 06:40:53 +02:00
"version": "3.0.22",
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": {
"clean": "rimraf dist",
2018-07-12 22:13:49 +02:00
"build": "npm run clean && webpack",
"lint": "npm-run-all lint:*",
"lint:css": "stylelint app/*.css app/**/*.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",
"contributors": "git shortlog -s | awk -F\\t '{print $2}' > CONTRIBUTORS",
"release": "npm-run-all contributors changelog",
"test": "npm-run-all test:*",
2018-10-02 22:15:02 +02:00
"test:backend": "nyc --reporter=lcovonly mocha --reporter=min test/backend",
"test:frontend": "cross-env NODE_ENV=development node test/frontend/runner.js",
"test:report": "nyc report --reporter=html",
2018-10-04 02:39:39 +02:00
"test-integration": "cross-env NODE_ENV=development wdio test/wdio.docker.conf.js",
2020-04-30 02:33:12 +02:00
"circleci-test-integration": "echo 'webdriverio tests need to be updated to node 12'",
2019-03-31 22:03:50 +02:00
"start": "npm run clean && cross-env NODE_ENV=development L10N_DEV=true FXA_CLIENT_ID=fced6b5e3f4c66b9 BASE_URL=http://localhost:8080 webpack-dev-server --mode=development",
"android": "cross-env ANDROID=1 npm start",
"prod": "node server/bin/prod.js"
},
2018-10-02 22:15:02 +02:00
"husky": {
"hooks": {
"pre-commit": "lint-staged",
2019-01-04 20:59:30 +01:00
"pre-push": "npm test",
2019-09-05 22:16:32 +02:00
"post-merge": "npm install",
"post-checkout": "scripts/sync-npm-dependencies.sh"
2018-10-02 22:15:02 +02:00
}
},
"lint-staged": {
"*.js": [
"prettier --single-quote --write",
"eslint",
"git add"
],
"*.css": [
"prettier --single-quote --write",
"stylelint",
"git add"
]
},
2018-02-06 23:31:18 +01:00
"nyc": {
"reporter": [
2018-02-21 05:31:27 +01:00
"text"
2018-02-06 23:31:18 +01:00
],
"cache": true
},
"engines": {
2020-04-30 02:33:12 +02:00
"node": "^12.16.3"
},
"devDependencies": {
2019-11-11 17:44:25 +01:00
"@babel/core": "^7.7.2",
2019-11-06 05:19:07 +01:00
"@babel/plugin-proposal-class-properties": "^7.7.0",
2018-12-11 18:48:05 +01:00
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
2019-11-06 05:19:07 +01:00
"@babel/preset-env": "^7.7.1",
2019-03-18 20:43:20 +01:00
"@dannycoates/webcrypto-liner": "^0.1.37",
2019-09-23 18:22:22 +02:00
"@fullhuman/postcss-purgecss": "^1.3.0",
2019-01-17 01:18:50 +01:00
"@mattiasbuelens/web-streams-polyfill": "0.2.1",
2019-11-11 17:44:25 +01:00
"@sentry/browser": "^5.8.0",
"asmcrypto.js": "^0.22.0",
2019-05-30 04:26:32 +02:00
"babel-loader": "^8.0.6",
2019-07-23 19:30:43 +02:00
"babel-plugin-istanbul": "^5.2.0",
2019-08-07 22:47:26 +02:00
"base64-js": "^1.3.1",
2018-12-19 21:26:26 +01:00
"content-disposition": "^0.5.3",
2019-11-11 17:44:25 +01:00
"copy-webpack-plugin": "^5.0.5",
"core-js": "^3.4.0",
"crc": "^3.8.0",
2019-10-04 08:32:49 +02:00
"cross-env": "^6.0.3",
2019-08-07 22:47:26 +02:00
"css-loader": "^3.2.0",
"css-mqpacker": "^7.0.0",
2019-02-20 05:12:12 +01:00
"cssnano": "^4.1.10",
2019-11-06 05:19:07 +01:00
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-mocha": "^6.2.1",
2019-10-04 08:32:49 +02:00
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-security": "^1.4.0",
2018-07-12 22:13:49 +02:00
"expose-loader": "^0.7.5",
2018-11-26 21:10:10 +01:00
"extract-loader": "^3.1.0",
2018-07-13 20:13:09 +02:00
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"fast-text-encoding": "^1.0.0",
2019-08-07 22:47:26 +02:00
"file-loader": "^4.2.0",
2018-07-12 22:13:49 +02:00
"git-rev-sync": "^1.12.0",
2018-02-01 22:42:27 +01:00
"html-loader": "^0.5.5",
2019-02-20 05:12:12 +01:00
"http_ece": "^1.1.0",
2019-10-21 19:24:07 +02:00
"husky": "^3.0.9",
"intl-pluralrules": "^1.1.1",
"lint-staged": "^9.4.2",
"mocha": "^6.2.2",
2018-09-14 20:53:13 +02:00
"morgan": "^1.9.1",
2018-12-19 21:26:26 +01:00
"nanobus": "^4.4.0",
2019-11-06 05:19:07 +01:00
"nanohtml": "^1.9.0",
2018-07-12 22:13:49 +02:00
"nanotiming": "^7.3.1",
2018-11-26 21:10:10 +01:00
"npm-run-all": "^4.1.5",
2019-05-30 04:26:32 +02:00
"nyc": "^14.1.1",
2018-09-07 08:08:32 +02:00
"postcss-loader": "^3.0.0",
2019-07-11 19:46:07 +02:00
"postcss-preset-env": "^6.7.0",
2019-11-11 17:44:25 +01:00
"prettier": "^1.19.1",
"proxyquire": "^2.1.3",
2019-11-11 17:44:25 +01:00
"puppeteer": "^2.0.0",
2019-07-23 19:30:43 +02:00
"raw-loader": "^3.1.0",
2019-11-11 17:44:25 +01:00
"redis-mock": "^0.47.0",
2019-08-26 17:58:34 +02:00
"rimraf": "^3.0.0",
2018-11-26 19:36:49 +01:00
"script-loader": "^0.7.2",
2019-09-23 18:22:22 +02:00
"sinon": "^7.5.0",
2017-09-12 02:09:29 +02:00
"string-hash": "^1.1.3",
2019-10-21 19:24:07 +02:00
"stylelint": "^11.1.1",
2019-10-04 08:32:49 +02:00
"stylelint-config-standard": "^19.0.0",
2018-10-02 22:15:02 +02:00
"stylelint-no-unsupported-browser-features": "^3.0.2",
2019-11-06 05:19:07 +01:00
"svgo": "^1.3.2",
2019-06-14 20:58:39 +02:00
"svgo-loader": "^2.2.1",
2019-11-06 05:19:07 +01:00
"tailwindcss": "^1.1.3",
2018-07-12 22:13:49 +02:00
"val-loader": "^1.1.1",
"webpack": "4.38.0",
2019-11-06 05:19:07 +01:00
"webpack-cli": "^3.3.10",
2019-10-04 08:32:49 +02:00
"webpack-dev-middleware": "^3.7.2",
2019-11-06 05:19:07 +01:00
"webpack-dev-server": "^3.9.0",
2019-10-04 08:32:49 +02:00
"webpack-manifest-plugin": "^2.2.0",
2017-08-26 00:38:26 +02:00
"webpack-unassert-loader": "^1.2.0"
2017-06-02 22:18:33 +02:00
},
"dependencies": {
2019-08-07 22:47:26 +02:00
"@dannycoates/express-ws": "^5.0.3",
2019-08-02 21:09:26 +02:00
"@fluent/bundle": "^0.13.0",
"@fluent/langneg": "^0.3.0",
2019-11-11 17:44:25 +01:00
"@google-cloud/storage": "^4.1.1",
"@sentry/node": "^5.8.0",
"aws-sdk": "^2.568.0",
"body-parser": "^1.19.0",
2019-08-26 17:58:34 +02:00
"choo": "^7.0.0",
"cldr-core": "^35.1.0",
"configstore": "github:dannycoates/configstore#master",
2019-10-21 19:24:07 +02:00
"convict": "^5.2.0",
2019-05-30 04:26:32 +02:00
"express": "^4.17.1",
2019-02-12 20:50:06 +01:00
"fxa-geodb": "^1.0.4",
2019-11-06 05:19:07 +01:00
"helmet": "^3.21.2",
"mkdirp": "^0.5.1",
2017-11-30 22:41:09 +01:00
"mozlog": "^2.2.0",
2019-05-30 04:26:32 +02:00
"node-fetch": "^2.6.0",
2018-06-21 02:05:33 +02:00
"redis": "^2.8.0",
"selenium-standalone": "^6.15.6",
"ua-parser-js": "^0.7.20"
2017-06-07 20:26:40 +02:00
},
2017-07-26 18:59:08 +02:00
"availableLanguages": [
"en-US",
2020-01-02 08:29:52 +01:00
"an",
2019-07-30 01:24:48 +02:00
"ar",
2019-03-18 23:26:06 +01:00
"ast",
"azz",
2019-11-11 09:38:46 +01:00
"be",
2019-07-10 06:50:12 +02:00
"bn",
2019-07-30 01:24:48 +02:00
"br",
2019-03-13 18:44:23 +01:00
"ca",
2017-09-13 00:42:56 +02:00
"cak",
"cs",
"cy",
2018-05-21 22:58:01 +02:00
"da",
"de",
"dsb",
2019-03-26 17:45:35 +01:00
"el",
2019-03-11 21:45:34 +01:00
"en-CA",
"en-GB",
2017-08-17 03:29:35 +02:00
"es-AR",
2019-03-18 23:26:06 +01:00
"es-CL",
"es-ES",
"es-MX",
2019-07-30 01:24:48 +02:00
"et",
2019-08-12 19:10:07 +02:00
"eu",
"fa",
2019-03-26 17:45:35 +01:00
"fi",
2017-07-26 18:59:08 +02:00
"fr",
"fy-NL",
2020-01-02 08:29:52 +01:00
"gn",
2019-07-30 01:24:48 +02:00
"he",
2019-03-11 21:45:34 +01:00
"hr",
"hsb",
"hu",
"hus",
"hy-AM",
2019-03-18 23:26:06 +01:00
"ia",
2017-08-04 00:28:08 +02:00
"id",
"it",
"ja",
"ka",
2019-04-17 18:35:50 +02:00
"kab",
"ko",
2019-03-11 21:45:34 +01:00
"lt",
2019-11-11 09:38:46 +01:00
"meh",
2020-01-02 08:29:52 +01:00
"mix",
2019-07-30 01:24:48 +02:00
"ml",
2019-08-12 19:10:07 +02:00
"nb-NO",
"nl",
2019-03-13 18:44:23 +01:00
"nn-NO",
2019-08-12 19:10:07 +02:00
"oc",
2019-07-30 01:24:48 +02:00
"pa-IN",
2019-03-18 23:26:06 +01:00
"pl",
2019-11-11 09:38:46 +01:00
"ppl",
2017-07-31 19:28:04 +02:00
"pt-BR",
"pt-PT",
2019-11-11 09:38:46 +01:00
"quc",
"ro",
"ru",
2019-03-13 18:44:23 +01:00
"sk",
2017-07-31 19:28:04 +02:00
"sl",
2019-04-17 18:35:50 +02:00
"sq",
2019-03-26 17:45:35 +01:00
"sr",
2019-07-30 01:24:48 +02:00
"su",
"sv-SE",
2019-10-21 19:36:34 +02:00
"te",
2019-07-30 01:24:48 +02:00
"th",
"tr",
"uk",
2017-08-08 05:59:39 +02:00
"vi",
2019-07-30 01:24:48 +02:00
"zgh",
"zh-CN",
"zh-TW"
]
}