-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 927 Bytes
/
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
{
"name": "clone-tabnews",
"version": "1.0.0",
"description": "Implementação do https://www.tabnews.com.br para o https://curso.dev",
"main": "index.js",
"scripts": {
"server": "npm run database:up && next dev",
"dev": "next dev",
"lint:check": "prettier --check .",
"lint:fix": "prettier --write .",
"test": "jest",
"test:watch": "jest --watchAll",
"database:up": "docker compose --file infra/compose.yaml --env-file .env.development up --detach",
"database:stop": "docker compose --file infra/compose.yaml --env-file .env.development stop",
"database:down": "docker compose --file infra/compose.yaml --env-file .env.development down"
},
"author": "Maycon",
"license": "MIT",
"dependencies": {
"next": "^15.1.6",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"jest": "^29.6.2",
"prettier": "^3.4.2"
}
}