1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-31 22:14:53 +01:00

193 lines
6.6 KiB
JSON
Raw Normal View History

2018-01-06 15:51:25 -08:00
{
2018-03-11 20:37:24 -07:00
"name": "pinafore",
"description": "Alternative web client for Mastodon",
2018-08-17 07:50:15 -07:00
"version": "0.5.2",
2018-01-06 15:51:25 -08:00
"scripts": {
2018-04-19 21:38:01 -07:00
"lint": "standard && standard --plugin html 'routes/**/*.html'",
"lint-fix": "standard --fix && standard --fix --plugin html 'routes/**/*.html'",
2018-04-14 15:50:16 -07:00
"dev": "run-s build-svg build-inline-script serve-dev",
2018-03-28 18:16:42 -07:00
"serve-dev": "run-p --race build-sass-watch serve",
2018-02-18 12:03:37 -08:00
"serve": "node server.js",
"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-18 17:28:08 -08:00
"build-and-start": "run-s build start",
2018-01-27 12:48:22 -08:00
"build-svg": "node ./bin/build-svg.js",
2018-04-14 15:50:16 -07:00
"build-inline-script": "node ./bin/build-inline-script.js",
2018-01-27 12:48:22 -08:00
"build-sass": "node ./bin/build-sass.js",
"build-sass-watch": "node ./bin/build-sass.js --watch",
"run-mastodon": "node -r esm ./bin/run-mastodon.js",
2018-02-19 18:36:54 -08:00
"test": "cross-env BROWSER=chrome:headless npm run test-browser",
"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",
"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-03-28 18:22:30 -07: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",
"globalize-css": "node ./bin/globalize-css.js",
2018-02-18 14:31:28 -08:00
"deglobalize-css": "node ./bin/globalize-css.js --reverse",
2018-04-04 18:33:08 -07:00
"stage-dev": "printf 'User-agent: *\nDisallow: /' > assets/robots.txt",
"stage-prod": "rm -f assets/robots.txt",
"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",
"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",
"deploy-dev-travis": "if [ $TRAVIS_BRANCH = master -a $TRAVIS_PULL_REQUEST = false ]; then run-s stage-dev launch-travis alias-dev-travis cleanup-travis; fi",
"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 15:51:25 -08:00
},
"dependencies": {
2018-06-23 09:51:26 -07:00
"@gamestdio/websocket": "^0.2.7",
"a11y-dialog": "^4.0.1",
"browserslist": "^4.0.2",
"cheerio": "^1.0.0-rc.2",
"child-process-promise": "^2.2.1",
2018-06-23 09:51:26 -07:00
"chokidar": "^2.0.4",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"emoji-regex": "^7.0.0",
"escape-html": "^1.0.3",
2018-08-17 22:26:36 -07:00
"esm": "^3.0.77",
"events": "^3.0.0",
"express": "^4.16.3",
"fg-loadcss": "^2.0.1",
"file-api": "^0.10.4",
"font-awesome-svg-png": "^1.2.2",
"form-data": "^2.3.2",
"glob": "^7.1.2",
2018-08-17 22:26:36 -07:00
"helmet": "^3.13.0",
"indexeddb-getall-shim": "^1.3.5",
"intersection-observer": "^0.5.0",
"lodash-es": "^4.17.10",
"lodash-webpack-plugin": "^0.11.5",
2018-08-17 22:26:28 -07:00
"mini-css-extract-plugin": "^0.4.1",
"mkdirp": "^0.5.1",
2018-08-17 22:26:36 -07:00
"node-fetch": "^2.2.0",
"node-sass": "^4.9.3",
"npm-run-all": "^4.1.3",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"p-any": "^1.1.0",
"page-lifecycle": "^0.1.1",
"performance-now": "^2.1.0",
"pify": "^4.0.0",
"quick-lru": "^1.1.0",
"requestidlecallback": "^0.3.0",
"sapper": "github:nolanlawson/sapper#for-pinafore-7",
"serve-static": "^1.13.2",
2018-08-17 22:26:36 -07:00
"shrink-ray-current": "^2.1.2",
"stringz": "^1.0.0",
"style-loader": "^0.22.1",
2018-08-17 22:26:15 -07:00
"svelte": "^2.11.0",
"svelte-extras": "^2.0.2",
2018-08-17 22:26:15 -07:00
"svelte-loader": "^2.10.1",
"svelte-transitions": "^1.2.0",
"svgo": "^1.0.5",
"timeago.js": "^3.0.2",
"tiny-queue": "^0.2.1",
2018-08-17 22:26:28 -07:00
"uglifyjs-webpack-plugin": "^1.3.0",
"web-animations-js": "^2.3.1",
2018-08-17 22:26:28 -07:00
"webpack": "^4.16.5",
"webpack-bundle-analyzer": "^2.13.1",
"yargs": "^12.0.1"
2018-01-06 15:51:25 -08:00
},
"devDependencies": {
2018-06-23 09:51:26 -07:00
"eslint-plugin-html": "^4.0.5",
2018-08-17 22:26:45 -07:00
"now": "^11.3.10",
"standard": "^11.0.1",
2018-08-17 22:26:45 -07:00
"testcafe": "^0.21.1"
},
2018-01-06 15:51:25 -08:00
"engines": {
"node": ">= 8"
2018-02-08 22:29:29 -08:00
},
"standard": {
"globals": [
"fetch",
"IDBKeyRange",
"IDBObjectStore",
"indexedDB",
"requestAnimationFrame",
"requestIdleCallback",
"location",
"localStorage",
"IntersectionObserver",
2018-02-08 22:31:05 -08:00
"URL",
2018-02-11 09:37:13 -08:00
"Event",
"history",
"performance",
2018-02-08 22:31:05 -08:00
"self",
"caches",
"__routes__",
"__shell__",
2018-02-18 15:30:42 -08:00
"__assets__",
2018-02-19 18:24:22 -08:00
"test",
2018-02-25 20:45:11 -08:00
"fixture",
2018-03-02 17:54:38 -08:00
"Element",
"FormData",
"atob",
"btoa",
2018-03-21 09:38:20 -07:00
"Blob",
2018-04-19 21:38:01 -07:00
"Element",
"Image"
2018-02-08 22:29:29 -08:00
],
"ignore": [
"dist",
"routes/_utils/asyncModules.js",
"routes/_components/dialog/asyncDialogs.js"
2018-02-08 22:29:29 -08:00
]
},
2018-03-28 18:22:30 -07:00
"esm": {
"mode": "auto",
2018-03-05 20:51:42 -08:00
"cjs": "vars"
2018-03-11 20:37:24 -07:00
},
"now": {
"type": "npm",
2018-03-11 20:37:24 -07:00
"env": {
"NODE_ENV": "production"
},
"files": [
"assets",
"bin",
"original-assets",
"routes",
"scss",
"templates",
"package.json",
"package-lock.json",
"server.js",
2018-04-14 15:50:16 -07:00
"inline-script.js",
2018-03-11 20:37:24 -07:00
"webpack.client.config.js",
"webpack.server.config.js"
],
"engines": {
"node": "^8.0.0"
}
},
"greenkeeper": {
"ignore": [
"sapper",
"a11y-dialog"
]
},
"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 15:51:25 -08:00
}