-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.49 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "techforeveryone",
"version": "1.0.0",
"description": "Keep up to date with the world of technology and programming!",
"main": "index.js",
"scripts": {
"dev": "npm run services:up && npm run services:wait:database && npm run migrations:up && next dev",
"postdev": "npm run services:stop",
"test": "npm run services:up && concurrently -n next,jest --hide next -k -s command-jest \"next dev\" \"jest --runInBand --verbose\"",
"posttest": "npm run services:stop",
"test:watch": "jest --watchAll --runInBand --verbose",
"services:up": "docker compose -f docker-compose.yaml up -d",
"services:stop": "docker compose -f docker-compose.yaml stop",
"services:down": "docker compose -f docker-compose.yaml down",
"services:wait:database": "node infra/scripts/wait-for-postgres.js",
"lint:prettier:check": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:eslint:check": "eslint .",
"migrations:create": "node-pg-migrate -m infra/migrations create",
"migrations:up": "node-pg-migrate -m infra/migrations --envPath .env.development up",
"prepare": "husky",
"commit": "cz",
"lint:secret:check": "npx secretlint \"**/*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/LucasMeloSena/TechForEveryone.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/LucasMeloSena/TechForEveryone/issues"
},
"homepage": "https://github.com/LucasMeloSena/TechForEveryone#readme",
"dependencies": {
"async-retry": "1.3.3",
"dotenv": "16.4.5",
"dotenv-expand": "11.0.6",
"next": "14.2.6",
"node-pg-migrate": "7.6.1",
"pg": "8.12.0",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@secretlint/secretlint-rule-preset-recommend": "8.2.4",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"commitizen": "4.3.0",
"concurrently": "8.2.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.6",
"eslint-config-prettier": "9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-next": "^0.0.0",
"husky": "9.1.5",
"jest": "29.7.0",
"npm": "10.8.2",
"prettier": "3.3.3",
"secretlint": "8.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}