-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.75 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
{
"name": "booking-admin",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:prod": "API_URL=https://booking-shopify-api.azurewebsites.net/api npm run dev",
"chromatic": "npx chromatic --exit-zero-on-changes",
"storybook": "storybook dev -p 6006",
"prebuild-storybook": "npm run fb-openapi",
"build-storybook": "storybook build",
"prebuild": "npm run fb-openapi",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"fetch-openapi": "curl -o ./openapi.yaml https://raw.githubusercontent.com/jamalsoueidan/booking-api/main/docs/openapi.yaml",
"build-openapi": "npx orval --config ./orval.config.ts",
"fb-openapi": "npm run fetch-openapi & npm run build-openapi"
},
"dependencies": {
"@casl/ability": "^6.4.0",
"@casl/react": "^3.1.0",
"@fullcalendar/core": "^6.1.5",
"@fullcalendar/daygrid": "^6.1.5",
"@fullcalendar/interaction": "^6.1.5",
"@fullcalendar/list": "^6.1.5",
"@fullcalendar/multimonth": "^6.1.5",
"@fullcalendar/react": "^6.1.5",
"@fullcalendar/timegrid": "^6.1.5",
"@shopify/polaris": "^10.45.0",
"@shopify/polaris-icons": "^6.12.0",
"@shopify/react-form": "^2.5.4",
"@shopify/react-i18n": "^7.7.2",
"@tanstack/react-query": "^4.29.3",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.10.0",
"styled-components": "^5.3.9"
},
"devDependencies": {
"@faker-js/faker": "7.6.0",
"@storybook/addon-essentials": "^7.0.5",
"@storybook/addon-interactions": "^7.0.5",
"@storybook/addon-links": "^7.0.5",
"@storybook/addon-mdx-gfm": "^7.0.5",
"@storybook/blocks": "^7.0.4",
"@storybook/react": "^7.0.4",
"@storybook/react-vite": "^7.0.5",
"@storybook/testing-library": "^0.1.0",
"@tanstack/react-query-devtools": "^4.29.3",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@vitejs/plugin-react-swc": "^3.3.0",
"axios": "^1.3.5",
"chromatic": "^6.17.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"orval": "^6.14.3",
"prettier": "^2.8.7",
"prop-types": "^15.8.1",
"storybook": "^7.0.5",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vite-plugin-eslint": "^1.8.1"
}
}