This repository has been archived by the owner on Feb 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.54 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
{
"name": "place4pals-web",
"version": "0.0.1",
"scripts": {
"start:prod": "vite dev --mode production",
"start:staging": "vite dev --mode staging",
"build:prod": "vite build --mode production && aws s3 --profile place4pals sync --delete ./build s3://p4p-prod-app --exclude \"*.js\" && aws s3 --profile place4pals sync --delete ./build s3://p4p-prod-app --include \"*.js\" --content-type \"application/javascript\" && aws --profile place4pals cloudfront create-invalidation --distribution-id E1NJZK48LGODTH --paths \"/*\" > /dev/null",
"build:staging": "vite build --mode staging && aws s3 --profile place4pals sync --delete ./build s3://p4p-staging-app --exclude \"*.js\" && aws s3 --profile place4pals sync --delete ./build s3://p4p-staging-app --include \"*.js\" --content-type \"application/javascript\" && aws --profile place4pals cloudfront create-invalidation --distribution-id E2BV1TI8IYZ0CC --paths \"/*\" > /dev/null",
"ngrok": "ngrok http --domain meet-python-incredibly.ngrok-free.app 5173"
},
"devDependencies": {
"@iconify/svelte": "^3.1.4",
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.20.4",
"@tanstack/svelte-query": "^5.3.0",
"autoprefixer": "^10.4.16",
"aws-amplify": "^6.0.8",
"postcss": "^8.4.31",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"tailwindcss": "^3.3.3",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.4.2"
},
"type": "module",
"dependencies": {
"react-image-file-resizer": "^0.4.8"
},
"imports": {
"#src/*": "./src/*"
}
}