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-11-13 02:38:00 +00:00
|
|
|
"version": "0.11.0",
|
2018-01-06 23:51:25 +00:00
|
|
|
"scripts": {
|
2018-04-20 05:38:01 +01:00
|
|
|
"lint": "standard && standard --plugin html 'routes/**/*.html'",
|
2018-04-28 22:19:39 +01:00
|
|
|
"lint-fix": "standard --fix && standard --fix --plugin html 'routes/**/*.html'",
|
2018-04-14 23:50:16 +01:00
|
|
|
"dev": "run-s build-svg build-inline-script serve-dev",
|
2018-03-29 02:16:42 +01:00
|
|
|
"serve-dev": "run-p --race build-sass-watch serve",
|
2018-02-18 20:03:37 +00:00
|
|
|
"serve": "node server.js",
|
2018-05-26 21:51:41 +01:00
|
|
|
"build": "cross-env NODE_ENV=production npm run build-steps",
|
|
|
|
"build-steps": "run-s globalize-css build-sass build-svg build-inline-script sapper-build deglobalize-css",
|
|
|
|
"sapper-build": "sapper build",
|
|
|
|
"start": "cross-env NODE_ENV=production npm run serve",
|
2018-02-19 01:28:08 +00:00
|
|
|
"build-and-start": "run-s build start",
|
2018-01-27 20:48:22 +00:00
|
|
|
"build-svg": "node ./bin/build-svg.js",
|
2018-09-23 20:26:01 +01:00
|
|
|
"build-inline-script": "node -r esm ./bin/build-inline-script.js",
|
2018-01-27 20:48:22 +00:00
|
|
|
"build-sass": "node ./bin/build-sass.js",
|
|
|
|
"build-sass-watch": "node ./bin/build-sass.js --watch",
|
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-01-20 20:35:38 +00:00
|
|
|
"globalize-css": "node ./bin/globalize-css.js",
|
2018-02-18 22:31:28 +00:00
|
|
|
"deglobalize-css": "node ./bin/globalize-css.js --reverse",
|
2018-04-05 02:33:08 +01:00
|
|
|
"stage-dev": "printf 'User-agent: *\nDisallow: /' > assets/robots.txt",
|
|
|
|
"stage-prod": "rm -f assets/robots.txt",
|
2018-04-27 04:21:45 +01:00
|
|
|
"launch": "now -e SAPPER_TIMESTAMP=$(date +%s%3N) --team nolanlawson && sleep 60",
|
|
|
|
"launch-travis": "now -e SAPPER_TIMESTAMP=$(date +%s%3N) --team nolanlawson --token $NOW_TOKEN && sleep 60",
|
|
|
|
"alias-prod": "now alias pinafore.social --team nolanlawson",
|
2018-11-11 21:01:32 +00:00
|
|
|
"alias-prod-travis": "now alias pinafore.social --team nolanlawson --token $NOW_TOKEN",
|
2018-04-27 04:21:45 +01:00
|
|
|
"alias-dev": "now alias dev.pinafore.social --team nolanlawson",
|
|
|
|
"alias-dev-travis": "now alias dev.pinafore.social --team nolanlawson --token $NOW_TOKEN",
|
|
|
|
"cleanup": "now rm pinafore --safe --yes --team nolanlawson",
|
|
|
|
"cleanup-travis": "now rm pinafore --safe --yes --team nolanlawson --token $NOW_TOKEN",
|
|
|
|
"deploy-prod": "run-s stage-prod launch alias-prod cleanup",
|
|
|
|
"deploy-dev": "run-s stage-dev launch alias-dev cleanup",
|
2018-11-11 21:01:32 +00:00
|
|
|
"deploy-dev-travis": "run-s stage-dev launch-travis alias-dev-travis cleanup-travis; fi",
|
|
|
|
"deploy-prod-travis": "if echo $TRAVIS_COMMIT_MESSAGE | grep -q -E '\\d+\\.\\d+\\.\\d+'; then run-s stage-prod launch-travis alias-prod-travis cleanup-travis; fi",
|
|
|
|
"deploy-all-travis": "if [ $TRAVIS_BRANCH = master -a $TRAVIS_PULL_REQUEST = false ]; then run-s deploy-dev-travis deploy-prod-travis; fi",
|
2018-08-19 22:46:48 +01:00
|
|
|
"backup-mastodon-data": "PGPASSWORD=pinafore pg_dump -U pinafore -w pinafore_development > fixtures/dump.sql && cd mastodon/public/system && tar -czf ../../../fixtures/system.tgz ."
|
2018-01-06 23:51:25 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-08-23 22:47:26 +01:00
|
|
|
"@gamestdio/websocket": "^0.2.8",
|
2018-11-04 23:57:14 +00:00
|
|
|
"browserslist": "^4.3.4",
|
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-11-11 19:31:32 +00:00
|
|
|
"compression": "^1.7.3",
|
2018-06-23 17:51:26 +01:00
|
|
|
"cross-env": "^5.2.0",
|
2018-11-05 00:35:08 +00:00
|
|
|
"css-loader": "^1.0.1",
|
2018-09-23 15:55:06 +01:00
|
|
|
"emoji-regex": "^7.0.1",
|
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-06-03 23:30:37 +01:00
|
|
|
"events": "^3.0.0",
|
2018-11-05 05:30:07 +00:00
|
|
|
"express": "^4.16.4",
|
2018-06-03 23:30:37 +01:00
|
|
|
"fg-loadcss": "^2.0.1",
|
|
|
|
"file-api": "^0.10.4",
|
|
|
|
"font-awesome-svg-png": "^1.2.2",
|
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-04 22:52:51 +00:00
|
|
|
"helmet": "^3.14.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",
|
2018-11-04 22:52:51 +00:00
|
|
|
"intersection-observer": "^0.5.1",
|
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",
|
2018-11-05 05:29:58 +00:00
|
|
|
"mini-css-extract-plugin": "^0.4.4",
|
2018-06-03 23:30:37 +01:00
|
|
|
"mkdirp": "^0.5.1",
|
2018-08-18 06:26:36 +01:00
|
|
|
"node-fetch": "^2.2.0",
|
2018-11-05 00:35:17 +00:00
|
|
|
"node-sass": "^4.10.0",
|
2018-06-03 23:30:37 +01:00
|
|
|
"npm-run-all": "^4.1.3",
|
2018-09-23 18:11:18 +01:00
|
|
|
"optimize-css-assets-webpack-plugin": "^5.0.1",
|
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-11-11 17:47:00 +00:00
|
|
|
"quick-lru": "^2.0.0",
|
2018-06-03 23:30:37 +01:00
|
|
|
"requestidlecallback": "^0.3.0",
|
2018-09-23 05:59:20 +01:00
|
|
|
"sapper": "github:nolanlawson/sapper#for-pinafore-8",
|
2018-06-03 23:30:37 +01:00
|
|
|
"serve-static": "^1.13.2",
|
|
|
|
"stringz": "^1.0.0",
|
2018-11-05 00:37:33 +00:00
|
|
|
"style-loader": "^0.23.1",
|
2018-11-13 01:34:12 +00:00
|
|
|
"svelte": "^2.15.3",
|
2018-06-03 23:30:37 +01:00
|
|
|
"svelte-extras": "^2.0.2",
|
2018-09-23 06:18:45 +01:00
|
|
|
"svelte-loader": "^2.11.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
|
|
|
"timeago.js": "^3.0.2",
|
|
|
|
"tiny-queue": "^0.2.1",
|
|
|
|
"web-animations-js": "^2.3.1",
|
2018-11-04 23:57:39 +00:00
|
|
|
"webpack": "^4.24.0",
|
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",
|
2018-11-10 21:41:49 +00:00
|
|
|
"now": "^12.0.0",
|
2018-09-23 15:55:06 +01:00
|
|
|
"standard": "^12.0.1",
|
2018-11-04 23:57:21 +00:00
|
|
|
"testcafe": "^0.23.0"
|
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",
|
|
|
|
"NodeList"
|
2018-02-09 06:29:29 +00:00
|
|
|
],
|
|
|
|
"ignore": [
|
|
|
|
"dist",
|
2018-04-21 17:56:53 +01:00
|
|
|
"routes/_utils/asyncModules.js",
|
|
|
|
"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": [
|
|
|
|
"assets",
|
|
|
|
"bin",
|
|
|
|
"original-assets",
|
|
|
|
"routes",
|
|
|
|
"scss",
|
|
|
|
"templates",
|
|
|
|
"package.json",
|
|
|
|
"package-lock.json",
|
|
|
|
"server.js",
|
2018-04-14 23:50:16 +01:00
|
|
|
"inline-script.js",
|
2018-03-12 03:37:24 +00:00
|
|
|
"webpack.client.config.js",
|
|
|
|
"webpack.server.config.js"
|
2018-05-28 16:26:33 +01:00
|
|
|
],
|
|
|
|
"engines": {
|
|
|
|
"node": "^8.0.0"
|
|
|
|
}
|
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
|
|
|
}
|