-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.19 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.19 KB
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
{
"name": "text2sql-monorepo",
"version": "1.0.0",
"private": true,
"description": "Text-to-SQL application with TypeScript monorepo architecture",
"author": "Sakeeb Rahman <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Sakeeb91/text2sql.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "pnpm -r --parallel dev",
"build": "pnpm -r build",
"lint": "pnpm -r lint",
"format": "prettier --write \"packages/**/*.{ts,tsx,js,jsx,json,md}\" \"tsconfig*.json\" \"package.json\" \"pnpm-workspace.yaml\" \".github/workflows/ts-*.yml\"",
"format:check": "prettier --check \"packages/**/*.{ts,tsx,js,jsx,json,md}\" \"tsconfig*.json\" \"package.json\" \"pnpm-workspace.yaml\" \".github/workflows/ts-*.yml\"",
"type-check": "pnpm -r type-check",
"test": "pnpm -r test",
"clean": "pnpm -r clean && rm -rf node_modules",
"prepare": "husky install",
"ts:dev": "pnpm --filter @text2sql/backend dev",
"ts:build": "pnpm --filter @text2sql/backend... build",
"ts:lint": "pnpm --filter @text2sql/backend lint",
"ts:type-check": "pnpm --filter @text2sql/shared build && pnpm --filter @text2sql/backend type-check",
"ts:test": "pnpm --filter @text2sql/shared build && pnpm --filter @text2sql/backend test",
"ts:test:coverage": "pnpm --filter @text2sql/shared build && pnpm --filter @text2sql/backend test:coverage",
"ts:compose": "docker compose --profile typescript up ts-postgres ts-backend",
"ts:env:validate": "tsx packages/backend/scripts/validate-database-config.ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"tsx": "^4.16.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"js-yaml": "^4.1.1"
}
}
}