-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 838 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
30
{
"name": "clone-tabnews",
"version": "1.0.0",
"description": "Curso Dev - Felipe Deschamps { https://www.tabnews.com.br/ }",
"main": "index.js",
"scripts": {
"dev": "npm run services:up && next dev",
"services:up": "docker compose -f infra/compose.yaml up -d",
"services:stop": "docker compose -f infra/compose.yaml stop",
"services:down": "docker compose -f infra/compose.yaml down",
"lint:check": "prettier --check .",
"lint:fix": "prettier --write .",
"test": "jest",
"test:watch": "jest --watchAll"
},
"author": "",
"license": "MIT",
"dependencies": {
"next": "^13.1.6",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"xlsx": "^0.18.5",
"yahoo-finance": "^0.3.8"
},
"devDependencies": {
"jest": "^29.6.2",
"prettier": "^3.0.3"
}
}