-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
{
"name": "divider",
"version": "1.0.0",
"description": "",
"scripts": {
"predev": "npm run services:up",
"dev": "next dev",
"postdev": "npm run services:down",
"services:up": "docker compose -f infra/compose.yaml up -d",
"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 up --envPath .env.development",
"prettier:check": "prettier -c .",
"prettier:fix": "prettier -w .",
"eslint:check": "eslint",
"eslint:fix": "eslint --fix",
"pretest": "npm run predev",
"test": "concurrently -n next,jest --hide next -k -s command-jest \"next dev\" \"jest --runInBand --verbose\"",
"posttest": "npm run postdev",
"test:watch": "jest --watchAll --runInBand --verbose",
"commit": "cz",
"prepare": "husky"
},
"dependencies": {
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.1",
"next": "^15.1.1",
"pg": "^8.13.1",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"async-retry": "^1.3.3",
"commitizen": "^4.3.1",
"concurrently": "^9.1.0",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.10.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"node-pg-migrate": "^7.8.0",
"prettier": "3.4.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}