-
Notifications
You must be signed in to change notification settings - Fork 722
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"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"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@nx/eslint": "20.7.1",
"@nx/js": "^20.7.1",
"@nx/vite": "^20.7.1",
"@swc-node/register": "~1.10.10",
"@swc/core": "~1.11.21",
"@swc/helpers": "~0.5.15",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"@vitest/coverage-v8": "^3.0.8",
"chalk": "^5.4.1",
"eslint": "^9.27.0",
"eslint-plugin-prettier": "5.4.0",
"nx": "20.6.4",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.4"
},
"packageManager": "yarn@4.3.1"
}