pinafore/package.json

116 lines
3.5 KiB
JSON
Raw Normal View History

2018-01-07 00:51:25 +01:00
{
"name": "TODO",
"description": "TODO",
"version": "0.0.1",
"scripts": {
2018-02-09 07:29:29 +01:00
"lint": "standard",
2018-02-18 21:03:37 +01:00
"dev": "npm run build-svg && run-p --race build-sass-watch serve",
"serve": "node server.js",
2018-01-27 21:48:22 +01:00
"build": "npm run globalize-css && npm run build-sass && npm run build-svg && sapper build && npm run deglobalize-css",
2018-01-07 00:51:25 +01:00
"start": "cross-env NODE_ENV=production node server.js",
2018-02-19 02:28:08 +01:00
"build-and-start": "run-s build start",
2018-01-27 21:48:22 +01:00
"build-svg": "node ./bin/build-svg.js",
"build-sass": "node ./bin/build-sass.js",
"build-sass-watch": "node ./bin/build-sass.js --watch",
"run-mastodon": "node -r @std/esm ./bin/run-mastodon",
2018-02-20 03:36:54 +01: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 18:21:17 +01:00
"test-mastodon": "run-s wait-for-mastodon-to-start wait-for-mastodon-data run-testcafe",
2018-03-06 06:21:28 +01:00
"wait-for-mastodon-to-start": "node -r @std/esm bin/wait-for-mastodon-to-start.js",
2018-03-06 18:21:17 +01:00
"wait-for-mastodon-data": "node -r @std/esm bin/wait-for-mastodon-data.js",
"globalize-css": "node ./bin/globalize-css.js",
2018-02-18 23:31:28 +01:00
"deglobalize-css": "node ./bin/globalize-css.js --reverse",
2018-02-18 23:38:10 +01:00
"backup-mastodon-data": "pg_dump -Fc mastodon_development > fixtures/dump.sql && cd mastodon/public/system && tar -czf ../../../fixtures/system.tgz ."
2018-01-07 00:51:25 +01:00
},
"dependencies": {
2018-01-28 07:48:02 +01:00
"@gamestdio/websocket": "^0.2.2",
"@std/esm": "^0.25.0",
"a11y-dialog": "^4.0.1",
2018-01-27 21:48:22 +01:00
"cheerio": "^1.0.0-rc.2",
2018-02-18 19:42:27 +01:00
"child-process-promise": "^2.2.1",
2018-01-14 02:41:15 +01:00
"chokidar": "^2.0.0",
2018-01-07 00:51:25 +01:00
"compression": "^1.7.1",
"cross-env": "^5.1.3",
"css-loader": "^0.28.7",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
2018-01-14 03:59:49 +01:00
"fg-loadcss": "^2.0.1",
"file-api": "^0.10.4",
2018-01-07 05:44:47 +01:00
"font-awesome-svg-png": "^1.2.2",
"form-data": "^2.3.2",
2018-01-07 00:51:25 +01:00
"glob": "^7.1.2",
2018-01-19 08:37:43 +01:00
"idb-keyval": "^2.3.0",
2018-01-19 05:57:15 +01:00
"indexeddb-getall-shim": "^1.3.1",
"intersection-observer": "^0.5.0",
2018-01-14 02:41:15 +01:00
"lodash": "^4.17.4",
2018-01-19 10:04:05 +01:00
"lodash-webpack-plugin": "^0.11.4",
"mkdirp": "^0.5.1",
2018-01-07 00:51:25 +01:00
"node-fetch": "^1.7.3",
2018-01-12 17:36:31 +01:00
"node-sass": "^4.7.2",
2018-01-07 00:51:25 +01:00
"npm-run-all": "^4.1.2",
2018-01-27 23:45:51 +01:00
"p-any": "^1.1.0",
2018-01-14 03:59:49 +01:00
"performance-now": "^2.1.0",
2018-01-14 02:41:15 +01:00
"pify": "^3.0.0",
"quick-lru": "^1.1.0",
2018-01-17 09:06:24 +01:00
"requestidlecallback": "^0.3.0",
2018-03-09 09:08:23 +01:00
"sapper": "nolanlawson/sapper#monkey-patches",
2018-01-07 00:51:25 +01:00
"serve-static": "^1.13.1",
2018-02-09 07:29:29 +01:00
"standard": "^10.0.3",
2018-02-28 08:38:33 +01:00
"stringz": "^0.4.0",
2018-01-07 00:51:25 +01:00
"style-loader": "^0.19.1",
2018-01-27 21:12:47 +01:00
"svelte": "^1.54.0",
"svelte-extras": "^1.6.0",
2018-01-07 00:51:25 +01:00
"svelte-loader": "^2.3.3",
"svelte-transitions": "^1.1.1",
2018-01-27 21:48:22 +01:00
"svgo": "^1.0.3",
2018-03-11 06:16:38 +01:00
"testcafe": "^0.19.0",
2018-02-13 19:12:52 +01:00
"timeago.js": "^3.0.2",
2018-01-31 06:17:01 +01:00
"tiny-queue": "^0.2.1",
2018-03-04 18:25:44 +01:00
"webpack": "^4.1.0",
"webpack-bundle-analyzer": "^2.11.1",
2018-01-19 10:32:23 +01:00
"workerize-loader": "^1.0.1",
2018-01-14 02:41:15 +01:00
"yargs": "^10.1.1"
2018-01-07 00:51:25 +01:00
},
"engines": {
"node": ">= 8"
2018-02-09 07:29:29 +01:00
},
"standard": {
"globals": [
"fetch",
"IDBKeyRange",
"IDBObjectStore",
"indexedDB",
"requestAnimationFrame",
"requestIdleCallback",
"location",
"localStorage",
"IntersectionObserver",
2018-02-09 07:31:05 +01:00
"URL",
2018-02-11 18:37:13 +01:00
"Event",
"history",
"performance",
2018-02-09 07:31:05 +01:00
"self",
"caches",
"__routes__",
"__shell__",
2018-02-19 00:30:42 +01:00
"__assets__",
2018-02-20 03:24:22 +01:00
"test",
2018-02-26 05:45:11 +01:00
"fixture",
2018-03-03 02:54:38 +01:00
"Element",
"FormData",
"atob",
"btoa",
"Blob"
2018-02-09 07:29:29 +01:00
],
"ignore": [
"dist",
"routes/_utils/asyncModules.js"
]
},
"@std/esm": {
2018-03-06 05:51:42 +01:00
"mode": "js",
"cjs": "vars"
2018-01-07 00:51:25 +01:00
}
}