-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
68 lines (68 loc) · 3.19 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
66
67
68
{
"name": "nx-generators",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx run-many --target=build --all",
"test": "nx run-many --target=test --all",
"lint": "nx run-many --target=lint --all",
"e2e": "nx run-many --target=e2e --all",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"preinstall": "npx only-allow pnpm",
"generate:esbuild-options:build": "pnpm typescript-json-schema node_modules/esbuild/lib/main.d.ts BuildOptions -o libs/nx-esbuild/src/executors/build/schema.json && pnpm json -I -f libs/nx-esbuild/src/executors/build/schema.json -e 'this.cli=\"nx\"' && pnpm json -I -f libs/nx-esbuild/src/executors/build/schema.json -e 'this.title=\"ESBuild Build Executor\"'",
"generate:esbuild-options:serve": "pnpm typescript-json-schema node_modules/esbuild/lib/main.d.ts BuildOptions -o libs/nx-esbuild/src/executors/serve/schema.json && pnpm json -I -f libs/nx-esbuild/src/executors/serve/schema.json -e 'this.cli=\"nx\"' && pnpm json -I -f libs/nx-esbuild/src/executors/serve/schema.json -e 'this.title=\"ESBuild Serve Executor\"'",
"~~~NOTE~~~": "entryPoints and watch dont work properly and need manual changes -- see 44808fb",
"generate:esbuild-options": "pnpm run generate:esbuild-options:build && pnpm run generate:esbuild-options:serve"
},
"private": true,
"devDependencies": {
"@aws-sdk/client-s3": "^3.609.0",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.27.7",
"@nx/devkit": "^19.4.1",
"@nx/eslint": "^19.4.1",
"@nx/eslint-plugin": "^19.4.1",
"@nx/plugin": "^19.4.1",
"@nx/workspace": "^19.4.1",
"@swc-node/register": "^1.10.2",
"@swc/core": "^1.6.13",
"@types/js-yaml": "^4.0.9",
"@types/node": "18.7.14",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"dotenv": "16.0.1",
"esbuild": "^0.16.17",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"jest": "^29.7.0",
"json": "^11.0.0",
"nx": "19.2.2",
"prettier": "2.7.1",
"ts-node": "~10.9.2",
"tslib": "^2.6.3",
"typescript": "5.4.5",
"typescript-json-schema": "^0.63.0",
"vite": "^3.2.10",
"vitest": "^1.6.0"
},
"dependencies": {
"execa": "^5.1.1"
},
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}