forked from OWOX/owox-data-marts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.99 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.99 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "owox-data-marts",
"version": "0.0.0",
"description": "OWOX Data Marts",
"homepage": "https://github.com/OWOX/owox-data-marts#readme",
"bugs": {
"url": "https://github.com/OWOX/owox-data-marts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OWOX/owox-data-marts.git"
},
"license": "ELv2",
"author": "OWOX",
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=22.16.0"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:dep": "npm run build:dep --workspaces --if-present",
"build:docs": "npm run build -w @owox/docs",
"build:owox": "npm run build -w owox",
"clean": "npx -y shx echo '☢️ Starting total cleanup...' && npx -y shx rm -rf node_modules apps/*/node_modules packages/*/node_modules apps/*/dist packages/*/dist + && npx -y shx echo '✅ Cleanup complete!'",
"clean:reinstall": "npm run clean && npx -y shx rm -f package-lock.json && npx -y shx echo '⚙️ Installing dependencies...' && npm install && npx -y shx echo '✅ Install complete!'",
"dev:web": "npm run dev -w @owox/web",
"dev:backend": "npm run dev -w @owox/backend",
"dev:docs": "npm run dev -w @owox/docs",
"dev:connectors": "npm run dev -w @owox/connectors",
"dev:owox": "npm run dev -w owox",
"dev": "npm-run-all --parallel dev:web dev:backend dev:connectors",
"format": "npm run format --workspaces --if-present",
"format:check": "npm run format:check --workspaces --if-present",
"format:root": "prettier --write \"**/*.{js,ts,mjs,yml,yaml,json}\" --ignore-path .prettierignore.root",
"format:root:check": "prettier --check \"**/*.{js,ts,mjs,yml,yaml,json}\" --ignore-path .prettierignore.root",
"format:packages": "node tools/format-package-info.mjs",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"lint:root": "eslint . --config ./eslint.config.mjs",
"lint:root:fix": "eslint . --fix --config ./eslint.config.mjs",
"lint:md": "npm run lint:md --workspaces --if-present",
"lint:md:fix": "npm run lint:md:fix --workspaces --if-present",
"lint:md:all": "markdownlint-cli2",
"lint:md:all:fix": "markdownlint-cli2 --fix",
"lint:md:root": "cross-env MDLINT_CONTEXT=root npx markdownlint-cli2",
"lint:md:root:fix": "cross-env MDLINT_CONTEXT=root npx markdownlint-cli2 --fix",
"migrations:create-template": "npm run migrations:create-template -w @owox/backend",
"migrations:down": "npm run migrations:down --prefix apps/owox",
"migrations:status": "npm run migrations:status --prefix apps/owox",
"migrations:up": "npm run migrations:up --prefix apps/owox",
"dump:create": "npm run dump:create -w @owox/backend",
"dump:apply": "npm run dump:apply -w @owox/backend",
"postinstall": "npm run setup:husky || echo 'Warning: Git hooks setup failed'",
"pre-commit": "lint-staged",
"prepare": "husky",
"setup:husky": "node tools/setup-husky.mjs",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.28.0",
"@owox/eslint-config": "/packages/eslint-config",
"@owox/prettier-config": "/packages/prettier-config",
"@owox/typescript-config": "/packages/typescript-config",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"cross-env": "^7.0.3",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"globals": "^16.2.0",
"husky": "^9.1.7",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.10",
"markdownlint": "^0.38.0",
"markdownlint-cli2": "^0.18.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"shx": "^0.4.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.30.1"
},
"overrides": {
"dompurify": "^3.2.4"
}
}