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-04-17 22:28:37 -07:00
"version" : "0.2.2" ,
2018-01-06 15:51:25 -08:00
"scripts" : {
2018-02-08 22:29:29 -08:00
"lint" : "standard" ,
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" ,
2018-04-14 15:50:16 -07:00
"build" : "cross-env NODE_ENV=production run-s globalize-css build-sass build-svg build-inline-script sapper-build deglobalize-css" ,
2018-04-09 07:33:57 -07:00
"sapper-build" : "cross-env NODE_ENV=production sapper build" ,
2018-01-06 15:51:25 -08:00
"start" : "cross-env NODE_ENV=production node server.js" ,
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" ,
2018-03-28 18:22:30 -07:00
"run-mastodon" : "node -r esm ./bin/run-mastodon" ,
2018-02-19 18:36:54 -08:00
"run-testcafe" : "cross-env-shell testcafe --hostname localhost --skip-js-errors $BROWSER tests/spec" ,
"test" : "cross-env BROWSER=chrome:headless npm run test-browser" ,
"test-browser" : "run-p --race run-mastodon dev test-mastodon" ,
2018-03-06 09:21:17 -08:00
"test-mastodon" : "run-s wait-for-mastodon-to-start wait-for-mastodon-data run-testcafe" ,
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" ,
2018-01-20 12:35:38 -08:00
"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" ,
2018-04-11 22:22:20 -07:00
"deploy-dev" : "npm run stage-dev && now && sleep 60 && now alias dev.pinafore.social && now rm pinafore --safe --yes" ,
2018-04-04 18:33:08 -07:00
"stage-prod" : "rm -f assets/robots.txt" ,
2018-04-17 22:28:17 -07:00
"deploy-prod" : "npm run stage-prod && now -e REDIRECT_URL=https://pinafore.social/ && sleep 60 && now alias www.pinafore.social && now rm pinafore --safe --yes" ,
2018-04-12 21:01:24 -07:00
"deploy-dev-travis" : "if [ $TRAVIS_BRANCH = master -a $TRAVIS_PULL_REQUEST = false ]; then npm run stage-dev && now --token $NOW_TOKEN --team nolanlawson && sleep 60 && now alias dev.pinafore.social --token $NOW_TOKEN --team nolanlawson && now rm pinafore --safe --yes --token $NOW_TOKEN --team nolanlawson; fi" ,
2018-02-18 14:38:10 -08:00
"backup-mastodon-data" : "pg_dump -Fc mastodon_development > fixtures/dump.sql && cd mastodon/public/system && tar -czf ../../../fixtures/system.tgz ."
2018-01-06 15:51:25 -08:00
} ,
"dependencies" : {
2018-01-27 22:48:02 -08:00
"@gamestdio/websocket" : "^0.2.2" ,
2018-02-04 19:15:35 -08:00
"a11y-dialog" : "^4.0.1" ,
2018-01-27 12:48:22 -08:00
"cheerio" : "^1.0.0-rc.2" ,
2018-02-18 10:42:27 -08:00
"child-process-promise" : "^2.2.1" ,
2018-01-13 17:41:15 -08:00
"chokidar" : "^2.0.0" ,
2018-01-06 15:51:25 -08:00
"compression" : "^1.7.1" ,
"cross-env" : "^5.1.3" ,
"css-loader" : "^0.28.7" ,
2018-04-14 15:50:06 -07:00
"escape-html" : "^1.0.3" ,
2018-03-28 18:22:30 -07:00
"esm" : "^3.0.12" ,
2018-04-08 15:08:32 -07:00
"events" : "^2.0.0" ,
2018-01-06 15:51:25 -08:00
"express" : "^4.16.2" ,
2018-01-13 18:59:49 -08:00
"fg-loadcss" : "^2.0.1" ,
2018-03-05 20:29:49 -08:00
"file-api" : "^0.10.4" ,
2018-01-06 20:44:47 -08:00
"font-awesome-svg-png" : "^1.2.2" ,
2018-03-05 23:46:50 -08:00
"form-data" : "^2.3.2" ,
2018-01-06 15:51:25 -08:00
"glob" : "^7.1.2" ,
2018-04-15 15:39:45 -07:00
"helmet" : "^3.12.0" ,
2018-01-18 20:57:15 -08:00
"indexeddb-getall-shim" : "^1.3.1" ,
2018-01-16 20:34:09 -08:00
"intersection-observer" : "^0.5.0" ,
2018-04-05 17:57:36 -07:00
"lodash" : "^4.17.5" ,
"lodash-es" : "^4.17.8" ,
2018-01-19 01:04:05 -08:00
"lodash-webpack-plugin" : "^0.11.4" ,
2018-04-17 08:19:15 -07:00
"mini-css-extract-plugin" : "^0.4.0" ,
2018-02-18 11:53:50 -08:00
"mkdirp" : "^0.5.1" ,
2018-04-14 16:41:54 +00:00
"node-fetch" : "^2.1.2" ,
2018-01-12 08:36:31 -08:00
"node-sass" : "^4.7.2" ,
2018-01-06 15:51:25 -08:00
"npm-run-all" : "^4.1.2" ,
2018-04-17 08:19:15 -07:00
"optimize-css-assets-webpack-plugin" : "^4.0.0" ,
2018-01-27 14:45:51 -08:00
"p-any" : "^1.1.0" ,
2018-01-13 18:59:49 -08:00
"performance-now" : "^2.1.0" ,
2018-01-13 17:41:15 -08:00
"pify" : "^3.0.0" ,
2018-01-23 18:15:14 -08:00
"quick-lru" : "^1.1.0" ,
2018-01-17 00:06:24 -08:00
"requestidlecallback" : "^0.3.0" ,
2018-04-17 11:10:21 -07:00
"sapper" : "github:nolanlawson/sapper#for-pinafore-3" ,
2018-01-06 15:51:25 -08:00
"serve-static" : "^1.13.1" ,
2018-04-14 16:41:54 +00:00
"stringz" : "^1.0.0" ,
"style-loader" : "^0.20.3" ,
2018-03-15 23:01:38 -07:00
"svelte" : "^1.57.4" ,
2018-04-15 15:10:32 -07:00
"svelte-extras" : "^2.0.0" ,
2018-01-06 15:51:25 -08:00
"svelte-loader" : "^2.3.3" ,
2018-01-14 11:22:57 -08:00
"svelte-transitions" : "^1.1.1" ,
2018-01-27 12:48:22 -08:00
"svgo" : "^1.0.3" ,
2018-02-13 10:12:52 -08:00
"timeago.js" : "^3.0.2" ,
2018-01-30 21:17:01 -08:00
"tiny-queue" : "^0.2.1" ,
2018-04-13 20:17:36 -07:00
"uglifyjs-webpack-plugin" : "^1.2.4" ,
2018-03-21 09:38:20 -07:00
"web-animations-js" : "^2.3.1" ,
2018-04-13 20:17:36 -07:00
"webpack" : "^4.5.0" ,
2018-03-04 09:25:44 -08:00
"webpack-bundle-analyzer" : "^2.11.1" ,
2018-04-14 16:41:54 +00:00
"yargs" : "^11.0.0"
2018-01-06 15:51:25 -08:00
} ,
2018-03-28 18:46:46 -07:00
"devDependencies" : {
2018-04-14 16:41:54 +00:00
"now" : "^11.1.4" ,
2018-04-14 10:47:17 -07:00
"standard" : "^10.0.3" ,
2018-03-28 18:46:46 -07:00
"testcafe" : "^0.19.0"
} ,
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" ,
"Element"
2018-02-08 22:29:29 -08:00
] ,
"ignore" : [
"dist" ,
"routes/_utils/asyncModules.js"
]
2018-03-05 20:29:49 -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" : {
2018-04-11 22:22:20 -07:00
"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"
]
2018-04-14 09:40:58 -07:00
} ,
"greenkeeper" : {
"ignore" : [
2018-04-14 10:06:19 -07:00
"sapper" ,
"standard"
2018-04-14 09:40:58 -07:00
]
2018-01-06 15:51:25 -08:00
}
}