-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
65 lines (65 loc) · 2.7 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
64
65
{
"private": true,
"name": "monorepo",
"type": "module",
"scripts": {
"dev": "pnpm exec nx run-many --nx-bail --target=dev --parallel 1000 --output-style stream",
"dev:ide": "pnpm exec nx run-many --nx-bail --target=dev --parallel=10 --verbose --projects=vs-code-extension --output-style=stream",
"production": "pnpm exec nx run-many --nx-bail --target=production --parallel 1000 --projects=@inlang/website --projects=@inlang/server --output-style=stream",
"build": "pnpm exec nx run-many --nx-bail --target=build --parallel",
"dev:lix": "pnpm --filter @inlang/env-variables build && pnpm --stream --parallel --filter \"@lix-js/*\" --filter @inlang/server dev",
"dev:lix-fink": "pnpm --filter @inlang/env-variables build && pnpm --stream --parallel --filter \"@lix-js/*\" --filter @inlang/server --filter @inlang/manage --filter @inlang/editor --filter @inlang/sdk --filter @inlang/website --filter @inlang/telemetry-proxy --filter @inlang/telemetry-proxy-parrot dev",
"---- TEST ----------------------------------------------------------": "",
"test": "pnpm exec nx run-many --target=test --parallel",
"---- LINT ----------------------------------------------------------": "",
"lint": "pnpm exec nx run-many --target=lint --parallel",
"format": "pnpm exec nx run-many --target=format --parallel",
"---- OTHER ---------------------------------------------------------": "",
"build:no-nx": "pnpm --stream --parallel build",
"dev:no-nx": "pnpm --stream --parallel dev",
"dev:no-clear": "pnpm dev:no-nx | sed -u 's/\\x1Bc//g'",
"fetch-env:internal": "doppler secrets download --no-file --format env > .env",
"changeset": "npx changeset",
"clean": "pnpm recursive run clean && rm -rf ./.env ./node_modules",
"----- CI ---- used to test the codebase on every commit": "",
"ci": "pnpm install && pnpm check-all",
"check-all": "pnpm lint && pnpm build && pnpm test",
"ci:publish": "pnpm --filter !vs-code-extension publish -r"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.17.0"
},
"pnpm": {
"overrides": {
"http-cache-semantics": "4.1.1",
"follow-redirects": "1.15.4",
"vitest": "0.34.6",
"@vitest/coverage-v8": "0.34.6"
},
"auditConfig": {
"ignoreCves": [
"CVE-2023-42282",
"CVE-2024-29415",
"CVE-2024-4068",
"CVE-2024-37890",
"CVE-2024-41818",
"CVE-2024-39338"
]
}
},
"devDependencies": {
"@inlang/cli": "workspace:*",
"@changesets/cli": "^2.26.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-unicorn": "^45.0.2",
"nx": "18.3.3",
"nx-cloud": "16.5.2",
"prettier": "2.8.3",
"typescript": "^5.5.2",
"vitest": "0.34.6"
}
}