This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
irreligious/package.json

20 lines
730 B
JSON
Raw Normal View History

{
2021-09-05 11:12:18 -05:00
"scripts": {
2021-09-06 09:51:23 -05:00
"lint": "eslint src/",
"build": "npm run lint && tsc",
"deploy": "aws s3 sync --delete public/ \"$(grep AWS_S3_BUCKET .env | cut -d '=' -f2)\" && aws cloudfront create-invalidation --distribution-id \"$(grep AWS_CLOUDFRONT_ID .env | cut -d '=' -f2)\" --paths=/*"
2021-09-05 11:12:18 -05:00
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"@typescript-eslint/typescript-estree": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"typescript": "^4.4.2",
2021-09-05 08:13:32 -05:00
"typescript-eslint-language-service": "^4.1.5",
"typescript-language-server": "^0.6.2"
}
}