-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 965 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 965 Bytes
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
{
"name": "@reagent/migrator",
"version": "0.2.0",
"description": "Simple PostgreSQL migrator using Slonik",
"main": "dist/index.js",
"repository": "https://github.com/reagent/migrator",
"author": "Patrick Reagan <patrick@the-reagans.com>",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"prebuild": "rimraf dist",
"build": "tsc --project tsconfig.build.json",
"prepack": "yarn build"
},
"prettier": {
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2,
"useTabs": false
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"rimraf": "^4.1.2",
"typescript": "^4.9.4"
},
"dependencies": {
"@reagent/logging": "^0.1.0",
"slonik": "^33.0.6",
"slonik-sql-tag-raw": "^2.0.0"
},
"files": [
"dist",
"README.md"
]
}