-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.15 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.15 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "curso-dev",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npx -y tsx infra/scripts/clean-database.ts",
"wrap:dev": "npm run services:up && npm run services:wait:database && npm run migrations:up && next dev",
"test": "npm run services:up && concurrently -n next,vitest --hide next -k -s command-vitest 'next dev' 'vitest'",
"posttest": "pnpm run services:stop",
"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",
"services:wait:database": "npx -y tsx infra/scripts/wait-for-postgres.ts",
"migrations:create": "./node_modules/.bin/node-pg-migrate -m infra/migrations create",
"migrations:up": "./node_modules/.bin/node-pg-migrate -m infra/migrations --envPath .env.development up",
"lint:eslint:check": "eslint .",
"lint:prettier:check": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"build": "next build",
"prepare": "husky",
"vitest": "vitest",
"commit": "cz"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@radix-ui/react-slot": "^1.1.2",
"async-retry": "1.3.3",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookie": "^1.0.2",
"lucide-react": "^0.475.0",
"next": "16.2.0",
"nodemailer": "^7.0.7",
"pg": "8.13.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"swr": "2.3.2",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"zod": "3.24.1"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@commitlint/types": "19.5.0",
"@eslint/compat": "1.2.4",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.39.4",
"@faker-js/faker": "^9.8.0",
"@next/eslint-plugin-next": "^16.2.3",
"@testing-library/react": "16.1.0",
"@types/async-retry": "1.4.9",
"@types/eslint__js": "8.42.3",
"@types/node": "22.10.2",
"@types/nodemailer": "^7.0.2",
"@types/pg": "8.11.10",
"@types/react": "19.0.2",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "^10.4.20",
"commitizen": "4.3.1",
"concurrently": "9.2.1",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.4.7",
"dotenv-expand": "12.0.3",
"eslint": "9.39.4",
"eslint-config-next": "16.2.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "5.1.0",
"globals": "^17.4.0",
"husky": "9.1.7",
"jsdom": "25.0.1",
"node-pg-migrate": "7.8.0",
"postcss": "^8.5.3",
"prettier": "3.4.2",
"set-cookie-parser": "3.0.1",
"tailwindcss": "3.4.1",
"typescript": "5.7.2",
"typescript-eslint": "8.18.1",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.9"
},
"packageManager": "pnpm@9.15.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}