-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.31 KB
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
{
"name": "react-carousel-example",
"version": "1.0.0",
"private": true,
"description": "Documentation site and live demos for react-carousel-latest.",
"author": "Binni G.",
"license": "Apache-2.0",
"scripts": {
"start": "parcel index.html",
"dev": "rm -rf .parcel-cache && parcel index.html",
"build": "rm -rf dist .parcel-cache && parcel build index.html",
"typecheck": "tsc --noEmit"
},
"//browserslist": "Targets without import-map support so Parcel inlines asset URLs via its classic runtime instead of import.meta.resolve.",
"browserslist": "> 0.5%, last 2 versions, Firefox ESR, Safari >= 14, not dead",
"dependencies": {
"framer-motion": "^12.6.3",
"react": "^19.2.0",
"react-carousel-latest": "file:..",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"babel-plugin-react-compiler": "^1.0.0",
"parcel": "^2.16.4",
"sharp": "^0.33.5",
"typescript": "^5.8.3"
},
"//alias": "Force a single React (and framer-motion) instance shared with the linked library source, so hooks don't break across the workspace boundary.",
"alias": {
"react": "./node_modules/react",
"react/jsx-runtime": "./node_modules/react/jsx-runtime",
"react-dom": "./node_modules/react-dom",
"framer-motion": "./node_modules/framer-motion"
}
}