-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.29 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "heythisischris-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start:prod": "yarn install && vite --mode production",
"start:staging": "yarn install && vite --mode staging",
"build:prod": "yarn install && vite build --mode production && aws s3 --profile heythisischris sync --delete ./dist s3://heythisischris-web && aws --profile heythisischris cloudfront create-invalidation --distribution-id EE4MB27CPKA5P --paths \"/*\" > /dev/null",
"build:staging": "yarn install && vite build --mode staging && aws s3 --profile heythisischris sync --delete ./dist s3://heythisischris-web-staging && aws --profile heythisischris cloudfront create-invalidation --distribution-id E1F7ZZT6JX48L5 --paths \"/*\" > /dev/null",
"build": "yarn build:staging && yarn build:prod",
"ngrok": "ngrok http --domain c.ngrok.pro 5173"
},
"dependencies": {
"@calcom/embed-react": "^1.5.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-query": "^5.45.1",
"@tanstack/react-virtual": "^3.5.1",
"@tiptap/extension-image": "^2.4.0",
"@tiptap/extension-link": "^2.4.0",
"@tiptap/extension-placeholder": "^2.4.0",
"@tiptap/extension-typography": "^2.4.0",
"@tiptap/extension-underline": "^2.4.0",
"@tiptap/pm": "^2.4.0",
"@tiptap/react": "^2.4.0",
"@tiptap/starter-kit": "^2.4.0",
"allotment": "^1.20.2",
"aws-amplify": "^6.3.6",
"framer-motion": "^11.2.10",
"posthog-js": "^1.139.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-fast-marquee": "^1.6.4",
"react-icons": "^5.2.1",
"react-image-file-resizer": "^0.4.8",
"react-router-dom": "^6.23.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vite": "^5.3.1"
},
"imports": {
"#src/*": "./src/*"
}
}