2018-01-06 23:51:25 +00:00
|
|
|
{
|
2018-03-12 03:37:24 +00:00
|
|
|
"name": "pinafore",
|
|
|
|
"description": "Alternative web client for Mastodon",
|
2018-12-19 17:09:33 +00:00
|
|
|
"version": "0.16.0",
|
2018-01-06 23:51:25 +00:00
|
|
|
"scripts": {
|
2018-12-11 15:31:48 +00:00
|
|
|
"lint": "standard && standard --plugin html 'src/routes/**/*.html'",
|
|
|
|
"lint-fix": "standard --fix && standard --fix --plugin html 'src/routes/**/*.html'",
|
2018-12-18 20:45:49 +00:00
|
|
|
"dev": "run-s build-template-html build-third-party-assets serve-dev",
|
2018-12-18 06:42:39 +00:00
|
|
|
"serve-dev": "run-p --race build-template-html-watch sapper-dev",
|
2018-12-16 03:21:20 +00:00
|
|
|
"sapper-dev": "cross-env NODE_ENV=development PORT=4002 sapper dev",
|
2018-12-11 15:31:48 +00:00
|
|
|
"sapper-prod": "cross-env PORT=4002 node __sapper__/build",
|
2019-01-12 18:17:37 +00:00
|
|
|
"before-build": "run-s build-template-html build-third-party-assets",
|
2018-05-26 21:51:41 +01:00
|
|
|
"build": "cross-env NODE_ENV=production npm run build-steps",
|
2019-01-12 18:17:37 +00:00
|
|
|
"build-steps": "run-s before-build sapper-build",
|
2018-05-26 21:51:41 +01:00
|
|
|
"sapper-build": "sapper build",
|
2018-12-11 15:31:48 +00:00
|
|
|
"start": "cross-env NODE_ENV=production npm run sapper-prod",
|
2018-02-19 01:28:08 +00:00
|
|
|
"build-and-start": "run-s build start",
|
2018-12-18 01:21:29 +00:00
|
|
|
"build-template-html": "node -r esm ./bin/build-template-html.js",
|
|
|
|
"build-template-html-watch": "node -r esm ./bin/build-template-html.js --watch",
|
2018-12-18 20:45:49 +00:00
|
|
|
"build-third-party-assets": "node -r esm ./bin/build-third-party-assets.js",
|
2018-05-25 04:07:43 +01:00
|
|
|
"run-mastodon": "node -r esm ./bin/run-mastodon.js",
|
2018-02-20 02:36:54 +00:00
|
|
|
"test": "cross-env BROWSER=chrome:headless npm run test-browser",
|
2018-05-26 21:51:41 +01:00
|
|
|
"test-browser": "run-p --race run-mastodon build-and-start test-mastodon",
|
|
|
|
"test-mastodon": "run-s wait-for-mastodon-to-start wait-for-mastodon-data testcafe",
|
2018-05-27 17:27:29 +01:00
|
|
|
"test-browser-suite0": "run-p --race run-mastodon build-and-start test-mastodon-suite0",
|
|
|
|
"test-mastodon-suite0": "run-s wait-for-mastodon-to-start wait-for-mastodon-data testcafe-suite0",
|
|
|
|
"test-browser-suite1": "run-p --race run-mastodon build-and-start test-mastodon-suite1",
|
|
|
|
"test-mastodon-suite1": "run-s wait-for-mastodon-to-start wait-for-mastodon-data testcafe-suite1",
|
|
|
|
"testcafe": "run-s testcafe-suite0 testcafe-suite1",
|
|
|
|
"testcafe-suite0": "cross-env-shell testcafe --hostname localhost --skip-js-errors -c 4 $BROWSER tests/spec/0*",
|
|
|
|
"testcafe-suite1": "cross-env-shell testcafe --hostname localhost --skip-js-errors $BROWSER tests/spec/1*",
|
2018-11-20 08:01:23 +00:00
|
|
|
"test-unit": "mocha -r esm tests/unit/",
|
2018-03-29 02:22:30 +01:00
|
|
|
"wait-for-mastodon-to-start": "node -r esm bin/wait-for-mastodon-to-start.js",
|
|
|
|
"wait-for-mastodon-data": "node -r esm bin/wait-for-mastodon-data.js",
|
2018-12-09 01:15:01 +00:00
|
|
|
"deploy-prod": "DEPLOY_TYPE=prod ./bin/deploy.sh",
|
|
|
|
"deploy-dev": "DEPLOY_TYPE=dev ./bin/deploy.sh",
|
|
|
|
"deploy-all-travis": "./bin/deploy-all-travis.sh",
|
2018-12-11 15:31:48 +00:00
|
|
|
"backup-mastodon-data": "./bin/backup-mastodon-data.sh",
|
|
|
|
"sapper-export": "sapper export",
|
|
|
|
"print-export-info": "node ./bin/print-export-info.js",
|
2019-01-12 18:17:37 +00:00
|
|
|
"export-steps": "run-s before-build sapper-export print-export-info",
|
|
|
|
"export": "cross-env NODE_ENV=production run-s export-steps"
|
2018-01-06 23:51:25 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-08-23 22:47:26 +01:00
|
|
|
"@gamestdio/websocket": "^0.2.8",
|
2018-12-15 10:06:12 +00:00
|
|
|
"@webcomponents/custom-elements": "^1.2.1",
|
2019-01-12 21:11:56 +00:00
|
|
|
"browserslist": "^4.4.0",
|
2018-06-03 23:30:37 +01:00
|
|
|
"cheerio": "^1.0.0-rc.2",
|
|
|
|
"child-process-promise": "^2.2.1",
|
2018-06-23 17:51:26 +01:00
|
|
|
"chokidar": "^2.0.4",
|
2018-12-16 18:22:34 +00:00
|
|
|
"circular-dependency-plugin": "^5.0.2",
|
2018-12-18 08:43:51 +00:00
|
|
|
"clean-css": "^4.2.1",
|
2018-11-11 19:31:32 +00:00
|
|
|
"compression": "^1.7.3",
|
2018-06-23 17:51:26 +01:00
|
|
|
"cross-env": "^5.2.0",
|
2019-01-12 21:12:56 +00:00
|
|
|
"css-loader": "^2.1.0",
|
2018-12-18 22:40:14 +00:00
|
|
|
"emoji-mart": "github:nolanlawson/emoji-mart#for-pinafore-1",
|
2019-01-12 21:13:05 +00:00
|
|
|
"emoji-regex": "^7.0.3",
|
2018-12-11 15:31:48 +00:00
|
|
|
"encoding": "^0.1.12",
|
2018-06-03 23:30:37 +01:00
|
|
|
"escape-html": "^1.0.3",
|
2018-09-23 05:59:37 +01:00
|
|
|
"esm": "^3.0.84",
|
2018-12-04 14:44:13 +00:00
|
|
|
"events-light": "^1.0.5",
|
2018-11-05 05:30:07 +00:00
|
|
|
"express": "^4.16.4",
|
2018-06-03 23:30:37 +01:00
|
|
|
"file-api": "^0.10.4",
|
2018-12-15 10:06:12 +00:00
|
|
|
"file-drop-element": "0.0.9",
|
2018-11-04 22:52:51 +00:00
|
|
|
"form-data": "^2.3.3",
|
2018-09-23 15:55:06 +01:00
|
|
|
"glob": "^7.1.3",
|
2018-11-22 04:53:43 +00:00
|
|
|
"helmet": "^3.15.0",
|
2018-08-30 03:03:12 +01:00
|
|
|
"idb-keyval": "^3.1.0",
|
2018-08-18 06:26:36 +01:00
|
|
|
"indexeddb-getall-shim": "^1.3.5",
|
2019-01-12 21:13:12 +00:00
|
|
|
"inferno-compat": "^7.0.5",
|
2018-11-04 22:52:51 +00:00
|
|
|
"intersection-observer": "^0.5.1",
|
2018-12-06 05:34:30 +00:00
|
|
|
"localstorage-memory": "^1.0.3",
|
2018-09-23 07:08:17 +01:00
|
|
|
"lodash-es": "^4.17.11",
|
2018-06-03 23:30:37 +01:00
|
|
|
"lodash-webpack-plugin": "^0.11.5",
|
|
|
|
"mkdirp": "^0.5.1",
|
2018-11-22 04:53:43 +00:00
|
|
|
"node-fetch": "^2.3.0",
|
2018-12-13 07:46:51 +00:00
|
|
|
"node-sass": "^4.11.0",
|
2018-11-25 05:21:42 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2018-06-03 23:30:37 +01:00
|
|
|
"p-any": "^1.1.0",
|
2018-08-16 18:23:26 +01:00
|
|
|
"page-lifecycle": "^0.1.1",
|
2018-06-03 23:30:37 +01:00
|
|
|
"performance-now": "^2.1.0",
|
2018-11-04 22:52:51 +00:00
|
|
|
"pify": "^4.0.1",
|
2018-12-18 18:00:12 +00:00
|
|
|
"prop-types": "^15.6.2",
|
2018-11-11 17:47:00 +00:00
|
|
|
"quick-lru": "^2.0.0",
|
2018-12-18 08:43:51 +00:00
|
|
|
"remount": "^0.9.3",
|
2018-06-03 23:30:37 +01:00
|
|
|
"requestidlecallback": "^0.3.0",
|
2019-01-12 21:13:18 +00:00
|
|
|
"rollup": "^1.1.0",
|
2018-12-08 19:21:54 +00:00
|
|
|
"rollup-plugin-replace": "^2.1.0",
|
2019-01-12 21:13:24 +00:00
|
|
|
"rollup-plugin-terser": "^4.0.2",
|
2018-12-14 05:32:12 +00:00
|
|
|
"sapper": "github:nolanlawson/sapper#nolan/sw-index-html-built",
|
2018-06-03 23:30:37 +01:00
|
|
|
"serve-static": "^1.13.2",
|
|
|
|
"stringz": "^1.0.0",
|
2018-12-16 17:34:41 +00:00
|
|
|
"svelte": "^2.16.0",
|
2018-06-03 23:30:37 +01:00
|
|
|
"svelte-extras": "^2.0.2",
|
2019-01-12 21:13:32 +00:00
|
|
|
"svelte-loader": "^2.12.0",
|
2018-06-03 23:30:37 +01:00
|
|
|
"svelte-transitions": "^1.2.0",
|
2018-09-23 06:05:50 +01:00
|
|
|
"svgo": "^1.1.1",
|
2018-09-23 07:08:23 +01:00
|
|
|
"terser-webpack-plugin": "^1.1.0",
|
2018-06-03 23:30:37 +01:00
|
|
|
"tiny-queue": "^0.2.1",
|
2018-12-11 15:31:48 +00:00
|
|
|
"uuid": "^3.3.2",
|
2018-06-03 23:30:37 +01:00
|
|
|
"web-animations-js": "^2.3.1",
|
2018-12-13 07:46:51 +00:00
|
|
|
"webpack": "^4.27.1",
|
2018-11-05 00:39:10 +00:00
|
|
|
"webpack-bundle-analyzer": "^3.0.3"
|
2018-01-06 23:51:25 +00:00
|
|
|
},
|
2018-03-29 02:46:46 +01:00
|
|
|
"devDependencies": {
|
2018-11-20 08:01:23 +00:00
|
|
|
"assert": "^1.4.1",
|
2018-11-12 00:37:10 +00:00
|
|
|
"eslint-plugin-html": "^5.0.0",
|
2018-11-20 08:01:23 +00:00
|
|
|
"mocha": "^5.2.0",
|
2019-01-12 17:50:43 +00:00
|
|
|
"now": "^13.0.0",
|
2018-09-23 15:55:06 +01:00
|
|
|
"standard": "^12.0.1",
|
2018-11-22 04:53:43 +00:00
|
|
|
"testcafe": "^0.23.2"
|
2018-03-29 02:46:46 +01:00
|
|
|
},
|
2018-01-06 23:51:25 +00:00
|
|
|
"engines": {
|
|
|
|
"node": ">= 8"
|
2018-02-09 06:29:29 +00:00
|
|
|
},
|
|
|
|
"standard": {
|
|
|
|
"globals": [
|
|
|
|
"fetch",
|
|
|
|
"IDBKeyRange",
|
|
|
|
"IDBObjectStore",
|
|
|
|
"indexedDB",
|
|
|
|
"requestAnimationFrame",
|
|
|
|
"requestIdleCallback",
|
|
|
|
"location",
|
|
|
|
"localStorage",
|
|
|
|
"IntersectionObserver",
|
2018-02-09 06:31:05 +00:00
|
|
|
"URL",
|
2018-02-11 17:37:13 +00:00
|
|
|
"Event",
|
|
|
|
"history",
|
|
|
|
"performance",
|
2018-02-09 06:31:05 +00:00
|
|
|
"self",
|
|
|
|
"caches",
|
|
|
|
"__routes__",
|
|
|
|
"__shell__",
|
2018-02-18 23:30:42 +00:00
|
|
|
"__assets__",
|
2018-02-20 02:24:22 +00:00
|
|
|
"test",
|
2018-02-26 04:45:11 +00:00
|
|
|
"fixture",
|
2018-03-03 01:54:38 +00:00
|
|
|
"Element",
|
|
|
|
"FormData",
|
|
|
|
"atob",
|
|
|
|
"btoa",
|
2018-03-21 16:38:20 +00:00
|
|
|
"Blob",
|
2018-04-20 05:38:01 +01:00
|
|
|
"Element",
|
2018-10-06 21:06:10 +01:00
|
|
|
"Image",
|
2018-11-21 08:33:46 +00:00
|
|
|
"NotificationEvent",
|
2018-11-25 09:20:58 +00:00
|
|
|
"NodeList",
|
2018-12-02 19:22:18 +00:00
|
|
|
"DOMParser",
|
2018-12-18 08:43:51 +00:00
|
|
|
"CSS",
|
|
|
|
"customElements"
|
2018-02-09 06:29:29 +00:00
|
|
|
],
|
|
|
|
"ignore": [
|
|
|
|
"dist",
|
2018-12-11 15:31:48 +00:00
|
|
|
"src/routes/_utils/asyncModules.js",
|
2018-12-16 01:13:46 +00:00
|
|
|
"src/routes/_utils/asyncPolyfills.js",
|
2018-12-11 15:31:48 +00:00
|
|
|
"src/routes/_components/dialog/asyncDialogs.js"
|
2018-02-09 06:29:29 +00:00
|
|
|
]
|
2018-03-06 04:29:49 +00:00
|
|
|
},
|
2018-03-29 02:22:30 +01:00
|
|
|
"esm": {
|
|
|
|
"mode": "auto",
|
2018-03-06 04:51:42 +00:00
|
|
|
"cjs": "vars"
|
2018-03-12 03:37:24 +00:00
|
|
|
},
|
|
|
|
"now": {
|
2018-04-12 06:22:20 +01:00
|
|
|
"type": "npm",
|
2018-03-12 03:37:24 +00:00
|
|
|
"env": {
|
|
|
|
"NODE_ENV": "production"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"bin",
|
2018-12-11 15:31:48 +00:00
|
|
|
"inline-script.js",
|
|
|
|
"original-static",
|
2018-03-12 03:37:24 +00:00
|
|
|
"scss",
|
2018-12-11 15:31:48 +00:00
|
|
|
"src",
|
2018-12-18 01:21:29 +00:00
|
|
|
"src-build",
|
2018-12-11 15:31:48 +00:00
|
|
|
"static",
|
2018-03-12 03:37:24 +00:00
|
|
|
"package.json",
|
|
|
|
"package-lock.json",
|
2018-12-16 03:58:39 +00:00
|
|
|
"thirdparty",
|
2018-12-11 15:31:48 +00:00
|
|
|
"webpack",
|
|
|
|
"webpack.config.js"
|
2018-05-28 16:26:33 +01:00
|
|
|
],
|
|
|
|
"engines": {
|
2018-12-18 01:30:12 +00:00
|
|
|
"node": "^10.0.0"
|
2018-05-28 16:26:33 +01:00
|
|
|
}
|
2018-04-14 17:40:58 +01:00
|
|
|
},
|
|
|
|
"greenkeeper": {
|
|
|
|
"ignore": [
|
2018-11-21 08:33:46 +00:00
|
|
|
"sapper"
|
2018-04-14 17:40:58 +01:00
|
|
|
]
|
2018-06-23 17:51:37 +01:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/nolanlawson/pinafore.git"
|
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "Nolan Lawson <nolan@nolanlawson.com>",
|
|
|
|
"license": "AGPL-3.0-only",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/nolanlawson/pinafore/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/nolanlawson/pinafore#readme"
|
2018-01-06 23:51:25 +00:00
|
|
|
}
|