-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.61 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
{
"name": "embedding-sdk-shoppy",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@mantine/core": "^7.8.0",
"@mantine/form": "^7.8.0",
"@mantine/hooks": "^7.8.0",
"@metabase/embedding-sdk-react": "^0.51.8",
"@tanstack/react-query": "^5.32.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@vitejs/plugin-react": "^4.3.1",
"classnames": "^2.5.1",
"jotai": "^2.8.4",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"match-sorter": "^6.3.3",
"postcss-nesting": "^12.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-intersection-observer": "^9.13.1",
"sort-by": "^1.2.0",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-tsconfig-paths": "^4.3.2",
"web-vitals": "^2.1.4",
"wouter": "^3.1.2"
},
"scripts": {
"install-deps": "yarn --force",
"typecheck": "tsc -p tsconfig.json --noEmit",
"dev": "vite",
"dev:https": "HTTPS=true yarn dev",
"dev:link": "rimraf node_modules/@metabase && yarn add file:../metabase/resources/embedding-sdk && yarn purge-cache",
"purge-cache": "rimraf node_modules/.vite",
"build": "vite build",
"preview": "vite preview",
"api:build": "cd api && yarn build",
"build:vercel": "NODE_OPTIONS=--max_old_space_size=5000 vite build",
"format": "prettier . --write",
"lint": "eslint src",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"yarn prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.6.0",
"@iconify/react": "^5.0.1",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"autoprefixer": "^10.4.19",
"eslint": "9.x",
"eslint-plugin-react": "^7.34.3",
"globals": "^15.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"postcss": "^8.4.38",
"prettier": "3.2.5",
"rimraf": "^5.0.5",
"sharp": "^0.33.5",
"svgo": "^3.3.2",
"tailwindcss": "^3.4.4",
"typescript-eslint": "^7.15.0",
"vite-plugin-image-optimizer": "^1.1.8",
"vite-plugin-webfont-dl": "^3.9.5"
}
}