-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.82 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
{
"name": "@outerbase/sdk",
"version": "2.0.0-rc.3",
"description": "",
"main": "dist/index.js",
"module": "dist/index.js",
"bin": {
"sync-database-models": "./dist/generators/generate-models.js"
},
"files": [
"dist/*"
],
"scripts": {
"compile": "tsc --project ./tsconfig.json",
"build": "npm run compile && node copy-handlebars.js",
"publish-npm-module": "npm publish --access public",
"prepack": "npm run build",
"prepare": "husky install",
"test": "jest --verbose --testPathPattern=unit",
"test:connection": "jest --verbose --testPathPattern=connection --runInBand --forceExit",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --testPathPattern=unit"
},
"lint-staged": {
"**/*.{ts,tsx,js,json,css,scss,md}": [
"prettier --write"
]
},
"keywords": [
"query-builder",
"query",
"builder"
],
"author": "Outerbase",
"license": "MIT",
"dependencies": {
"handlebars": "^4.7.8"
},
"devDependencies": {
"@google-cloud/bigquery": "^7.9.0",
"@jest/globals": "^29.7.0",
"@libsql/client": "^0.14.0",
"@neondatabase/serverless": "^0.9.3",
"@types/jest": "^29.5.13",
"@types/node": "^20.12.12",
"@types/ws": "^8.5.10",
"dotenv": "^16.4.5",
"duckdb": "^1.1.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.4",
"mongodb": "^6.9.0",
"mysql2": "^3.11.3",
"pg": "^8.13.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5",
"ws": "^8.17.1",
"snowflake-sdk": "^1.15.0"
}
}