-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.19 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.19 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
{
"name": "@eigenspace/pg-client",
"description": "A db client for common operations",
"version": "1.0.5",
"main": "index.js",
"author": "Nikita Agupov <nktrsk@gmail.com>",
"contributors": [
"Anton Kalashnikov <tohasan@yandex.ru>",
"Daniil Sitdikov <hello.boriskas@gmail.com>",
"Nikita Sergeev <sergeev.nickitos@yandex.ru>",
"Nikita Agupov <nktrsk@gmail.com>"
],
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/eigen-space/pg-client.git"
},
"scripts": {
"build": "webpack --config=config/webpack/webpack.config.prod.js --progress",
"compile": "tsc",
"lint:code": "eslint --ext .ts,.js",
"lint:fix": "yarn lint:code --fix",
"lint:markdown": "node ./node_modules/@eigenspace/codestyle/scripts/markdown-lint.js",
"lint": "yarn lint:code . && yarn lint:markdown",
"deploy:publish": "npx -p @eigenspace/package-publisher@0.0.3 publish",
"hooks:pre-push": "yarn lint && yarn build",
"hooks:pre-commit": "lint-staged"
},
"husky": {
"hooks": {
"pre-push": "yarn hooks:pre-push",
"pre-commit": "lint-staged",
"commit-msg": "commit-linter --message=COMMIT_MESSAGE"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint:fix",
"git add"
]
},
"dependencies": {
"@eigenspace/common-types": "0.0.27",
"@eigenspace/logger": "1.0.7",
"@eigenspace/utils": "1.2.48"
},
"peerDependencies": {
"pg": "^8.5.1"
},
"devDependencies": {
"@eigenspace/codestyle": "3.0.4",
"@eigenspace/commit-linter": "latest",
"@types/node": "14.14.35",
"@types/pg": "^7.14.1",
"clean-webpack-plugin": "2.0.2",
"copy-webpack-plugin": "4.6.0",
"eslint": "7.9.0",
"eslint-plugin-eigenspace-script": "0.1.4",
"husky": "2.3.0",
"lint-staged": "8.1.7",
"pg": "8.5.1",
"ts-loader": "6.2.1",
"ts-node": "8.6.2",
"typescript": "3.8.2",
"webpack": "4.32.0",
"webpack-cli": "4.2.0"
}
}