-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.33 KB
/
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
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
{
"name": "tabnews",
"version": "0.0.1",
"description": "Implementation for curso.dev",
"main": "index.js",
"scripts": {
"dev": "npm run services:compose:up && npm run db:migrations:up && next dev",
"postdev": "npm run services:compose:stop",
"test": "npm run services:compose:up && concurrently -n next,jest --hide next -k -s command-jest \"next dev\" \"jest --runInBand --verbose\"",
"posttest": "npm run services:compose:stop",
"test:watch": "npm run db:migrations:up && concurrently -n next,jest --hide next -k -s command-jest \"next dev\" \"jest --watchAll --runInBand --verbose\"",
"posttest:watch": "npm run services:compose:stop",
"lint:prettier:check": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:eslint:check": "next lint --dir .",
"lint:secretlint:check": "secretlint --maskSecrets .",
"services:compose:up": "docker compose -f infra/compose.yaml up -d",
"services:compose:stop": "docker compose -f infra/compose.yaml stop",
"services:compose:down": "docker compose -f infra/compose.yaml down",
"services:wait:database": "node infra/scripts/wait-for-db.js",
"db:migrations:create": "node-pg-migrate -m infra/migrations create",
"db:migrations:up": "npm run services:wait:database && node-pg-migrate -m infra/migrations --envPath .env.development up",
"db:migrations:down": "node-pg-migrate -m infra/migrations --envPath .env.development down",
"prepare": "husky",
"commit": "cz"
},
"author": "coderCadu",
"license": "MIT",
"dependencies": {
"async-retry": "1.3.3",
"dotenv": "16.4.5",
"dotenv-expand": "11.0.7",
"next": "15.0.3",
"node-pg-migrate": "6.2.2",
"pg": "8.13.1",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@secretlint/secretlint-rule-preset-recommend": "9.0.0",
"commitizen": "4.3.1",
"concurrently": "9.1.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.9.0",
"husky": "9.1.6",
"jest": "29.7.0",
"prettier": "3.3.3",
"secretlint": "9.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}