forked from gravity-ui/postgreskit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "@gravity-ui/postgreskit",
"author": "Gravity UI Team",
"description": "Module for simplified PostgreSQL database connection",
"repository": "git@github.com:gravity-ui/postgreskit.git",
"version": "1.3.1",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf build && tsc",
"lint": "run-p lint:*",
"lint:js": "eslint --ext .js,.ts .",
"lint:prettier": "prettier '**/*.{md,json,yaml,yml}' --check",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"prepare": "husky install",
"test": "echo \"No test specified\" && exit 0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@gravity-ui/eslint-config": "^2.0.0",
"@gravity-ui/prettier-config": "^1.0.1",
"@gravity-ui/tsconfig": "^1.0.0",
"@types/lodash": "^4.14.195",
"@types/node": "^18.16.16",
"eslint": "^8.41.0",
"husky": "^8.0.3",
"nano-staged": "^0.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"typescript": "^5.1.3"
},
"dependencies": {
"knex": "^2.4.2",
"lodash": "^4.17.21",
"objection": "^3.0.2",
"pg": "^8.11.0"
},
"nano-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
],
"*.{md,json,yaml,yml}": [
"prettier --write"
]
}
}