-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.88 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "booking-store",
"private": true,
"sideEffects": false,
"version": "2024.4.7",
"type": "module",
"scripts": {
"generate-i18n": "npx i18next-resources-for-ts interface -i ./public/locales/da -o ./app/i18n/@types/resources.d.ts",
"build": "shopify hydrogen build --codegen",
"dev": "shopify hydrogen dev --codegen",
"dev:tunnel": "shopify hydrogen dev --codegen --customer-account-push__unstable",
"preview": "npm run build && shopify hydrogen preview --customer-account-push__unstable",
"lint": "eslint --no-error-on-unmatched-pattern --ext .js,.ts,.jsx,.tsx .",
"typecheck": "tsc --noEmit",
"codegen": "shopify hydrogen codegen",
"fetch-openapi": "curl -o ./openapi.yaml https://raw.githubusercontent.com/jamalsoueidan/booking-api/main/docs/openapi.yaml",
"build-openapi": "npx rimraf app/lib/api/model && npx orval --config ./orval.config.cjs",
"fb-openapi": "npm run fetch-openapi & npm run build-openapi",
"test": "npx playwright test && npx playwright show-report",
"test:ui": "npx playwright test --ui",
"test:codegen": "npx playwright codegen"
},
"prettier": "@shopify/prettier-config",
"dependencies": {
"@changey/react-leaflet-markercluster": "^4.0.0-rc1",
"@conform-to/react": "^1.1.5",
"@conform-to/zod": "^1.1.5",
"@fullcalendar/core": "^6.1.14",
"@fullcalendar/daygrid": "^6.1.14",
"@fullcalendar/interaction": "^6.1.14",
"@fullcalendar/react": "^6.1.14",
"@fullcalendar/timegrid": "^6.1.14",
"@mantine/core": "^7.11.0",
"@mantine/hooks": "^7.11.0",
"@mantine/modals": "^7.11.0",
"@mantine/nprogress": "^7.11.0",
"@mantine/tiptap": "^7.11.0",
"@remix-run/react": "^2.9.2",
"@remix-run/server-runtime": "^2.9.2",
"@shopify/cli": "^3.61.2",
"@shopify/cli-hydrogen": "^8.1.1",
"@shopify/hydrogen": "^2024.4.7",
"@shopify/remix-oxygen": "^2.0.4",
"@tabler/icons-react": "^3.6.0",
"@tiptap/extension-highlight": "^2.2.5",
"@tiptap/extension-link": "^2.2.5",
"@tiptap/extension-subscript": "^2.2.5",
"@tiptap/extension-superscript": "^2.2.5",
"@tiptap/extension-text-align": "^2.2.5",
"@tiptap/extension-underline": "^2.2.5",
"@tiptap/extension-youtube": "^2.4.0",
"@tiptap/html": "^2.2.5",
"@tiptap/pm": "^2.2.5",
"@tiptap/react": "^2.2.5",
"@tiptap/starter-kit": "^2.2.5",
"clsx": "^2.1.0",
"country-flag-icons": "^1.5.11",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.1",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"i18next": "^23.11.5",
"i18next-http-backend": "^2.5.2",
"i18next-resources-for-ts": "^1.5.0",
"isbot": "^3.8.0",
"leaflet": "^1.9.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.2",
"react-infinite-scroll-component": "^6.1.0",
"react-leaflet": "^4.2.1",
"remix-utils": "^7.6.0",
"uuid": "^9.0.1",
"zod": "^3.21.4",
"zod-i18n-map": "^2.27.0"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@playwright/test": "^1.43.1",
"@remix-run/dev": "^2.9.2",
"@remix-run/eslint-config": "^2.9.2",
"@shopify/hydrogen-codegen": "^0.3.1",
"@shopify/mini-oxygen": "^3.0.3",
"@shopify/oxygen-workers-types": "^4.0.0",
"@shopify/prettier-config": "^1.1.2",
"@total-typescript/ts-reset": "^0.4.2",
"@types/eslint": "^8.4.10",
"@types/leaflet": "^1.9.12",
"@types/node": "^20.12.7",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.8",
"dotenv": "^16.4.5",
"eslint": "^8.20.0",
"eslint-plugin-hydrogen": "0.12.2",
"mailosaur": "^8.6.1",
"orval": "^6.25.0",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.14.4",
"postcss-simple-vars": "^7.0.1",
"prettier": "^2.8.4",
"typescript": "^5.2.2",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.3.1"
},
"engines": {
"node": ">=18.0.0"
}
}