-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.61 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.61 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
44
45
46
47
48
49
50
51
{
"name": "tech-threads",
"version": "1.0.0",
"description": "Um projeto pra eu estudar juntinho com o Filipe Deschamps",
"main": "index.js",
"scripts": {
"dev": "pnpm services:up && ./infra/wait-for.sh localhost 5432 && pnpm migration:up && next dev",
"lint:check": "prettier --check .",
"lint:fix": "prettier --write .",
"test": "pnpm jest --runInBand",
"test:watch": "pnpm jest --watch --runInBand",
"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",
"migration:create": "node-pg-migrate -m infra/migrations create",
"migration:up": "node-pg-migrate -m infra/migrations --envPath .env.development up"
},
"author": "@henriquenas",
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.5",
"dotenv-expand": "^12.0.1",
"next": "^13.1.6",
"node-pg-migrate": "^6.2.2",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/node": "20.6.2",
"@types/pg": "^8.10.7",
"@types/react": "18.2.21",
"@types/react-dom": "^18.3.1",
"jest": "^29.6.2",
"postcss": "^8.4.47",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.14",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "5.2.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}