-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "@spillover/media-library",
"version": "1.10.8",
"description": "Media Library react component",
"license": "UNLICENSED",
"private": true,
"files": [
"dist"
],
"module": "./dist/media-library.es.js",
"dependencies": {
"@apollo/client": "^3.11.4",
"apollo-upload-client": "^18.0.1",
"apollo3-cache-persist": "^0.15.0",
"chonky": "^2.3.2",
"chonky-icon-fontawesome": "^2.3.2",
"formik": "^2.4.6",
"graphql": "^16.9.0",
"luxon": "^3.5.0",
"react-dnd": "^11",
"react-dnd-html5-backend": "^11",
"react-select": "^5.8.0",
"react-toastify": "^9.1.3",
"yup": "^1.4.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@fortawesome/fontawesome-free": "^6.6.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"tailwindcss": "^3.4.9",
"vite": "^5.4.0"
},
"peerDependencies": {
"react": ">= 16",
"react-dom": ">= 16"
},
"scripts": {
"start": "vite",
"build": "NODE_ENV=production vite build",
"//": "HACK: hack for React 16",
"postbuild": "sed -i '' -e 's/.useInsertionEffect/[\"useInsertion\"+\"Effect\"]/g' ./dist/media-library.es.js",
"lint": "biome check --write ./**/*"
},
"engines": {
"node": ">= 16"
}
}