clean up dependencies, add deploy script

This commit is contained in:
Nolan Lawson 2018-03-28 18:46:46 -07:00
parent 6f350b68d3
commit be4526431f
2 changed files with 444 additions and 136 deletions

570
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -23,6 +23,9 @@
"wait-for-mastodon-data": "node -r esm bin/wait-for-mastodon-data.js",
"globalize-css": "node ./bin/globalize-css.js",
"deglobalize-css": "node ./bin/globalize-css.js --reverse",
"deploy-dev": "run-s now now-alias-dev",
"now": "now",
"now-alias-dev": "now alias dev.pinafore.social",
"backup-mastodon-data": "pg_dump -Fc mastodon_development > fixtures/dump.sql && cd mastodon/public/system && tar -czf ../../../fixtures/system.tgz ."
},
"dependencies": {
@ -57,7 +60,6 @@
"requestidlecallback": "^0.3.0",
"sapper": "github:nolanlawson/sapper#monkey-patches",
"serve-static": "^1.13.1",
"standard": "^10.0.3",
"stringz": "^0.4.0",
"style-loader": "^0.19.1",
"svelte": "^1.57.4",
@ -65,7 +67,6 @@
"svelte-loader": "^2.3.3",
"svelte-transitions": "^1.1.1",
"svgo": "^1.0.3",
"testcafe": "^0.19.0",
"timeago.js": "^3.0.2",
"tiny-queue": "^0.2.1",
"web-animations-js": "^2.3.1",
@ -74,6 +75,11 @@
"workerize-loader": "^1.0.1",
"yargs": "^10.1.1"
},
"devDependencies": {
"now": "^10.2.2",
"standard": "^10.0.3",
"testcafe": "^0.19.0"
},
"engines": {
"node": ">= 8"
},