-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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": "node-postgres",
"private": true,
"description": "node postgres monorepo",
"repository": "[email protected]:brianc/node-postgres.git",
"license": "MIT",
"author": "Brian M. Carlson <[email protected]>",
"type": "module",
"scripts": {
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"debug": "tsx runme.ts",
"docs:build": "cd docs && yarn build",
"docs:start": "cd docs && yarn start",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"pretty": "prettier -w ."
},
"contributes": {
"typescriptServerPlugins": [
{
"name": "typescript-eslint-language-service"
}
]
},
"dependencies": {
"@types/pg": "8.10.2",
"pg": "file:./packages/pg"
},
"devDependencies": {
"@babel/core": "7.22.9",
"@babel/eslint-parser": "7.22.9",
"@babel/eslint-plugin": "7.22.5",
"@mangos/jxpath": "1.0.13",
"@types/jest": "29.5.3",
"@types/node": "20.4.2",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"acorn": "8.10.0",
"escodegen": "2.1.0",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "5.0.0",
"jest": "29.6.1",
"prettier": "3.0.0",
"ts-jest": "29.1.1",
"tsx": "3.12.7",
"typescript": "5.2.2",
"typescript-eslint-language-service": "5.0.5"
},
"engines": {
"node": ">=v18.15.0"
}
}