-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2 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
{
"name": "popular-movies",
"description": "Aplicação para pesquisar e favoritar filmes no Local Storage do navegador, fazendo uso da API do The Movie Database (TMDB)",
"version": "1.0.0",
"license": "MIT",
"private": true,
"homepage": "https://popular-movies-six.vercel.app/",
"main": "src/pages/_app.tsx",
"author": {
"name": "Rian Oliveira",
"email": "riandiasdeoliveira2001@gmail.com"
},
"scripts": {
"build": "next build",
"cypress": "cypress open",
"dev": "start http://localhost:3000 & next dev",
"eslint": "next lint",
"format": "prettier --write --ignore-unknown .",
"lint": "npm run format & npm run eslint",
"prebuild": "npm run lint",
"start": "start http://localhost:3000 & next start",
"test:coverage": "jest --coverage & start coverage/lcov-report/index.html",
"test:watch": "jest --watch",
"test": "jest"
},
"dependencies": {
"@svgr/webpack": "^6.5.1",
"axios": "^1.1.3",
"next": "13.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-toastify": "^9.1.1",
"sharp": "^0.31.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"autoprefixer": "^10.4.13",
"cypress": "^11.1.0",
"eslint": "^8.27.0",
"eslint-config-next": "^13.0.3",
"eslint-plugin-cypress": "^2.12.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"postcss": "^8.4.19",
"prettier": "^2.7.1",
"redux": "^4.2.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.8.4",
"usehooks-ts": "^2.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/riandeoliveira/PopularMovies.git"
},
"keywords": [
"7daysofcode",
"alura",
"javascript",
"nextjs",
"react",
"tailwindcss",
"typescript"
]
}