forked from opral/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.54 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
{
"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 --target=dev --parallel=10 --nx-bail --verbose --projects=vs-code-extension --output-style=stream",
"production": "pnpm exec nx run-many --nx-bail --target=production --parallel 1000 --exclude @lix-js/server --exclude @inlang/badge --exclude @inlang/manage --exclude @inlang/editor --exclude @inlang/telemetry-proxy --output-style=stream",
"build": "pnpm exec nx run-many --nx-bail --target=build --parallel",
"dev:lix": "pnpm --stream --parallel --filter @lix-js/* --filter @inlang/server --filter @inlang/editor --filter @inlang/manage --filter @inlang/website 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:public": "pnpm --filter=@inlang/env-variables fetch-env:public",
"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 audit --audit-level=high && pnpm format && pnpm lint && pnpm build && pnpm test",
"ci:publish": "pnpm --filter !vs-code-extension publish -r",
"ci:version": "pnpm exec changeset version && pnpm install --lockfile-only"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"pnpm": {
"overrides": {
"http-cache-semantics": "4.1.1",
"follow-redirects": "1.15.4",
"vitest": "0.34.6",
"@vitest/coverage-v8": "0.34.6",
"vite": "4.5.2"
}
},
"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": "17.2.8",
"nx-cloud": "16.5.2",
"prettier": "2.8.3",
"typescript": "5.2.2",
"vitest": "0.34.6"
}
}