Movie_Search/movie-search/package.json

40 lines
980 B
JSON
Raw Normal View History

{
"name": "movie-search",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
2024-05-25 01:03:21 -04:00
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"framer-motion": "^11.2.6",
"next": "^14.2.3",
2024-06-02 01:21:21 -04:00
"react": "^18.2.0",
2024-05-25 01:03:21 -04:00
"react-dom": "^18",
"ts-node-dev": "^2.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.6",
2024-05-25 01:03:21 -04:00
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/node": "^20",
"autoprefixer": "^10.4.19",
"eslint": "^8",
"eslint-config-next": "14.2.3",
2024-05-25 01:03:21 -04:00
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5"
}
}