demo-react-animated-list/package.json

27 lines
830 B
JSON
Raw Normal View History

2024-08-06 15:54:53 -07:00
{
"name": "demo-react-animated-list",
"version": "1.0.0",
"description": "A demo of an implementation of an animated list in React Typescript.",
"main": "index.tsx",
"scripts": {
2024-08-06 17:20:04 -07:00
"build": "esbuild index.tsx --bundle --sourcemap --outfile=./dist/demo-react-animated-list.js",
2024-08-06 16:26:30 -07:00
"dev": "esbuild index.tsx --bundle --watch --serve --outdir=./public/scripts --servedir=./public",
2024-08-06 15:54:53 -07:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://scm.matthewcardarelli.com/mcsolutions/demo-react-animated-list.git"
},
"author": "Matthew Cardarelli",
"license": "MIT",
"devDependencies": {
2024-08-06 16:26:30 -07:00
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
2024-08-06 15:54:53 -07:00
"esbuild": "0.23.0"
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
}
}