-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.07 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
{
"name": "forrozim",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "npm run services:up && node --env-file=.env.development src/lib/wait-for-db.js && npm run migrations:up && next dev",
"build": "next build",
"deploy": "npm run migrations:run:production && npm run start",
"start": "next start",
"services:up": "docker compose -f src/lib/compose.yaml up -d",
"services:stop": "docker compose -f src/lib/compose.yaml stop",
"services:down": "docker compose -f src/lib/compose.yaml down",
"migrations:create": "node-pg-migrate -m src/lib/migrations create",
"migrations:up": "node-pg-migrate -m src/lib/migrations --envPath .env.development up",
"migrations:down": "node-pg-migrate -m src/lib/migrations --envPath .env.development down",
"migrations:up:production": "node-pg-migrate -m src/lib/migrations up",
"migrations:down:production": "node-pg-migrate -m src/lib/migrations down",
"migrations:list": "node-pg-migrate -m src/lib/migrations --envPath .env.development --dry-run up",
"migrations:list:production": "node-pg-migrate -m src/lib/migrations --dry-run up",
"migrations:run": "node src/lib/run-migrations.js",
"migrations:run:production": "NODE_ENV=production node src/lib/run-migrations.js",
"lint:prettier:check": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:eslint:check": "next lint --dir .",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx",
"postinstall": "husky",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atalhox/course-javascript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/atalhox/course-javascript/issues"
},
"homepage": "https://github.com/atalhox/course-javascript#readme",
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.37.0",
"@jest/globals": "^30.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"babel-jest": "^30.2.0",
"eslint": "^9.37.0",
"eslint-config-next": "^15.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.2.3",
"nodemon": "^3.1.10",
"prettier": "^3.6.2"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"dotenv": "^17.2.3",
"dotenv-expand": "11.0.6",
"next": "^15.5.4",
"node-pg-migrate": "7.6.1",
"pg": "8.12.0",
"react": "^19.2.0",
"react-dom": "^19.2.0"
}
}