-
Notifications
You must be signed in to change notification settings - Fork 721
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.49 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
{
"name": "lambdas",
"private": true,
"workspaces": [
"functions/*",
"libs/*"
],
"scripts": {
"build": "nx run-many --target=build --all",
"affected:build": "nx affected:build --parallel",
"dist": "nx run-many --target=dist --all",
"format": "nx run-many --target=format --all",
"format-check": "nx run-many --target=format-check --all",
"affected:format-check": "nx affected:format-check --parallel",
"lint": "nx run-many --target=lint --all",
"affected:lint": "nx affected:lint --parallel",
"test": "nx run-many --target=test --all",
"affected:test": "nx affected:test --parallel"
},
"resolutions": {
"@octokit/types": "^13.0.0",
"brace-expansion": "^2.0.3",
"@babel/helpers": "^7.26.10",
"@babel/runtime": "^7.26.10"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@nx/eslint": "22.5.4",
"@nx/js": "^22.5.4",
"@nx/vite": "^22.5.4",
"@swc-node/register": "~1.11.1",
"@swc/core": "~1.15.8",
"@swc/helpers": "~0.5.18",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.46.2",
"@vitest/coverage-v8": "^4.0.5",
"chalk": "^5.6.2",
"eslint": "^9.39.2",
"eslint-plugin-prettier": "5.5.4",
"nx": "22.3.3",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"packageManager": "yarn@4.3.1"
}