This repository was archived by the owner on Jul 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (41 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (41 loc) · 1.46 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
{
"name": "root",
"version": "0.0.0",
"private": false,
"scripts": {
"format:check": "prettier --check --config ./.prettierrc.json --ignore-path ./.prettierignore core source-connectors",
"format": "prettier --write --config ./.prettierrc.json --ignore-path ./.prettierignore core source-connectors",
"prepare": "husky install",
"pre-commit": "pnpm format:check",
"build": "turbo run build",
"test": "turbo run test",
"jitsu-cli": "turbo run build --filter=jitsu-cli && node --enable-source-maps core/jitsu-cli/lib/index.js",
"ci": "(pnpm format:check || echo 'Code is not formatted property!' && exit 1) && pnpm build && pnpm release --canary 0.9.0 --publish",
"factory-reset": "rm -rf `find . -type d -name node_modules` && rm -rf `find . -type d -name .turbo`",
"clean": "turbo run clean",
"release": "ts-node --skipProject ./scripts/release.ts --filter './core/*' --filter './source-connectors/*' --filter './destinations/*'",
"release:canary": "pnpm release --canary 0.9.0"
},
"devDependencies": {
"@types/node": "^16.11.7",
"husky": "^8.0.1",
"jest": "^27.3.1",
"prettier": "latest",
"turbo": "~1.2.11",
"json5": "^2.1.0",
"typescript": "^4.5.2",
"ts-node": "~10.8.1"
},
"engines": {
"yarn": ">=1000",
"pnpm": ">=3",
"npm": ">=1000",
"node": ">=14"
},
"packageManager": "pnpm",
"workspaces": [
"core/*",
"destinations/*",
"source-connectors/*"
]
}