-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "pg-dump-example",
"version": "1.0.0",
"description": "```sh git clone git@github.com:hexlet-components/pg-dump-example.git cd pg-dump-example make ```",
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "oxlint --config=.oxlintrc.json .",
"test": "vitest run --passWithNoTests",
"lint:fix": "oxfmt --ignore-path=.oxfmtignore . && oxlint --config=.oxlintrc.json --fix .",
"format": "oxfmt --ignore-path=.oxfmtignore .",
"format:check": "oxfmt --ignore-path=.oxfmtignore --check ."
},
"engines": {
"node": ">=26.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexlet-components/pg-dump-example.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hexlet-components/pg-dump-example/issues"
},
"homepage": "https://github.com/hexlet-components/pg-dump-example#readme",
"dependencies": {
"@faker-js/faker": "^10.6.0",
"knex": "^3.3.0",
"lodash": "^4.18.1"
},
"devDependencies": {
"oxfmt": "^0.65.0",
"oxlint": "^1.80.0",
"vitest": "^4.1.11"
},
"packageManager": "pnpm@11.24.0"
}