-
Notifications
You must be signed in to change notification settings - Fork 344
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 4.06 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 4.06 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
92
93
94
95
96
97
98
99
{
"name": "root",
"version": "0.0.0",
"private": false,
"scripts": {
"build-scripts": "pnpm --filter ./cli/build-scripts run exec",
"codegen": "pnpm --filter @jitsu-internal/console prisma generate",
"format:check": "prettier --ignore-unknown --check --config ./.prettierrc.json --ignore-path ./.prettierignore $(git diff --name-only --diff-filter d | xargs)",
"format:check:all": "prettier --check --config ./.prettierrc.json --ignore-path ./.prettierignore .",
"format": "prettier --ignore-unknown --write --config ./.prettierrc.json --ignore-path ./.prettierignore $(git diff --name-only --diff-filter d | xargs)",
"format:all": "prettier --write --config ./.prettierrc.json --ignore-path ./.prettierignore .",
"tool:hash": "turbo run tool:hash --",
"ci:no-test": "pnpm format:check:all && pnpm lint && pnpm build",
"ci:all": "pnpm ci:no-test && pnpm test",
"prepare": "husky install",
"pre-commit": "pnpm format:check",
"build:turbo": "turbo run build",
"build": "pnpm -r run build",
"typecheck:turbo": "turbo run typecheck",
"typecheck": "pnpm -r run typecheck",
"ee-api:dev": "pnpm --filter ee-api ee-api:dev",
"console:dev": "pnpm --filter console console:dev",
"console:manage": "pnpm --filter console manage",
"rotor:dev": "pnpm --filter rotor rotor:dev",
"console:start": "dotenv -e .env.local -- turbo run console:start",
"console:db-prepare": "dotenv -e .env.local -- pnpm run --filter=console db:update-schema",
"console:db-prepare-force": "dotenv -e .env.local -- pnpm run --filter=console db:update-schema-force",
"dev": "dotenv -e .env.local -- turbo run dev",
"test": "pnpm -r run test",
"test:playwright": "pnpm -r run test:playwright",
"jitsu-cli": "turbo run build --filter=jitsu-cli && node --enable-source-maps core/jitsu-cli/lib/index.js",
"factory-reset": "pnpm clean ; pnpm clean:turbo ; rm -rf `find . -type d -name node_modules`",
"clean:turbo": "turbo run clean || exit 0",
"clean": "pnpm -r run clean",
"lint": "pnpm -r run lint",
"release": "pnpm build && pnpm test && monorel --filter ./types/protocols --filter ./cli/jitsu-cli --filter ./libs/functions --filter ./libs/jitsu-js --filter ./libs/jitsu-react --npm-tag latest --git-tag 'jitsu-js-libs-v{version}' --push-tag --version '1.10.4'",
"release:build-scripts": "pnpm build --filter ./cli/build-scripts && monorel --filter ./cli/build-scripts --npm-tag latest --version 0.0.4-dev.{rev}.{time} --publish --git-tag 'jitsu-build-scripts-v{version}'",
"release:canary": "monorel --filter ./types/protocols --filter ./cli/jitsu-cli --filter ./libs/functions --filter ./libs/jitsu-js --filter ./libs/jitsu-react --version '1.10.5-canary.{rev}.{time}' --npm-tag canary --git-tag 'jitsu-js-libs-canary-v{version}' --push-tag"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"dotenv-cli": "^6.0.0",
"husky": "^8.0.3",
"monorel": "0.4.2",
"prettier": "^2.8.7",
"semantic-release": "^23.0.0",
"turbo": "^2.0.0",
"typescript": "catalog:"
},
"engines": {
"yarn": ">=1000",
"pnpm": ">=9",
"npm": ">=1000",
"node": ">=22"
},
"pnpm": {
"overrides": {
"form-data": "^4.0.4",
"zstd-napi": "^0.0.10",
"nth-check": "2.1.1",
"nanoid": "3.3.8",
"postcss": "^8.4.47",
"elliptic": "^6.6.1",
"cross-spawn": "^7.0.6",
"path-to-regexp": "^0.1.12",
"@types/react": "18.3.0",
"@types/react-dom": "18.3.1"
},
"onlyBuiltDependencies": [
"@confluentinc/kafka-javascript",
"@firebase/util",
"@mongodb-js/zstd",
"@prisma/client",
"@prisma/engines",
"@swc/core",
"core-js",
"core-js-pure",
"esbuild",
"isolated-vm",
"prisma",
"protobufjs",
"sharp",
"turbo",
"zstd-napi"
]
},
"workspaces": [
"examples/*",
"e2e",
"types/*",
"webapps/*",
"services/*",
"cli/*",
"libs/*"
]
}