-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.38 KB
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
{
"name": "clone-tabnews",
"version": "1.0.0",
"description": "An implementation of https://www.tabnews.com.br built on https://curso.dev",
"main": "index.js",
"scripts": {
"dev": "npm run services:up && next dev",
"prod": "next build && next start",
"services:up": "docker compose -f infra/compose.yml up -d",
"services:stop": "docker compose -f infra/compose.yml stop",
"services:down": "docker compose -f infra/compose.yml down",
"lint:check": "prettier --check .",
"lint:fix": "prettier --write .",
"test": "jest --runInBand",
"test:watch": "jest --watchAll --runInBand",
"test:coverage": "jest --coverage",
"migration:create": "node-pg-migrate -m infra/migrations create",
"migration:up": "node-pg-migrate -m infra/migrations --envPath .env.development up"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matheusbr1/clone-tabnews.git"
},
"author": "Matheus Baron",
"license": "MIT",
"bugs": {
"url": "https://github.com/matheusbr1/clone-tabnews/issues"
},
"homepage": "https://github.com/matheusbr1/clone-tabnews#readme",
"dependencies": {
"dotenv": "^16.4.4",
"dotenv-expand": "^11.0.6",
"next": "^13.1.6",
"node-pg-migrate": "^6.2.2",
"pg": "^8.11.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"jest": "^29.6.2",
"prettier": "^3.8.3"
}
}