-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "crudely-typed",
"version": "0.1.3",
"description": "Simple \"everyday CRUD\" Postgres queries with perfect TypeScript types",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/danvk/crudely-typed.git",
"author": "Dan Vanderkam <danvdk@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"build": "tsc",
"format": "prettier --write .",
"test": "jest",
"clean": "rm -rf dist",
"coverage": "jest --coverage",
"prepublishOnly": "tsc"
},
"files": [
"dist/src"
],
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-plugin-expect-type": "^0.2.0",
"jest": "^27.5.1",
"pg": "^8.7.3",
"pg-to-ts": "^4.1.0",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {}
}