-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "arrgh",
"version": "0.1.0",
"private": true,
"homepage": ".",
"dependencies": {
"@emotion/css": "^11.11.2",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"immutable": "^4.0.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.0",
"typescript": "^5.3.2"
},
"scripts": {
"lint": "eslint src",
"_buildCore": "esbuild --bundle --platform=browser --sourcemap --target=es2020 --outfile=dist/client.js src/index.tsx",
"dev": "tsc --watch --preserveWatchOutput & yarn _buildCore --watch --serve=3000 --servedir=dist",
"build": "tsc && yarn lint && yarn _buildCore --minify",
"deploy": "yarn build && aws s3 sync --delete dist/ s3://arrgh.jwatzman.org/ && aws cloudfront create-invalidation --distribution-id E2E8NRM9X59687 --paths '/*'"
}
}