-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.99 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "postgres-schema-builder",
"version": "1.3.0",
"description": "Simple postgres schema builder leveraging Typescript's type system to enable typesafe queries",
"keywords": [
"postgres",
"postgresql",
"typescript",
"typesafe",
"schema",
"query",
"builder",
"database"
],
"author": "Yannick Stachelscheid <[email protected]>",
"homepage": "https://github.com/yss14/",
"license": "MIT",
"main": "build/index",
"repository": {
"type": "git",
"url": "git+https://github.com/yss14/postgres-schema-builder"
},
"scripts": {
"dev": "npm run build:watch",
"build": "tsc",
"build:watch": "tsc --watch --preserveWatchOutput",
"verify": "tsc --noEmit",
"test": "jest --config=jest.json --detectOpenHandles --colors",
"test:watch": "jest --watch --config=jest.json --detectOpenHandles --colors",
"test:cov": "jest --config=jest.json --collectCoverage --detectOpenHandles --colors --forceExit",
"test:ci": "npm run test:cov && codecov",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"prettify": "prettier --config .prettierrc.js --ignore-path .prettierignore --write ./src/"
},
"bugs": {
"url": "https://github.com/yss14/postgres-schema-builder/issues"
},
"dependencies": {
"@types/pg": "^8.6.0",
"@types/pg-escape": "^0.2.0",
"lodash": "^4.17.21",
"lodash.max": "^4.0.1",
"moment": "^2.24.0",
"pg": "^8.0.3",
"pg-escape": "^0.2.0"
},
"devDependencies": {
"@addbots/eslint-config": "^2.0.0",
"@addbots/prettier-config": "^1.0.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/lodash.max": "^4.0.6",
"@types/node": "^16.0.0",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"codecov": "^3.6.1",
"dotenv": "^10.0.0",
"eslint": "^7.18.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.2",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
}
}