-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
{
"name": "edge-functions",
"version": "1.0.0",
"description": "Edge Functions",
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {
"@types/aws-lambda": "^8.10.119",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.3.0",
"@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.15",
"aws-lambda": "^1.0.7",
"axios": "^1.7.4",
"dotenv": "^16.3.1",
"dotenv-cli": "latest",
"eslint": "^8.45.0",
"prettier": "^3.9.6",
"turbo": "^2.10.5",
"typescript": "^5.1.6",
"typescript-eslint": "^0.0.1-alpha.0",
"yarn": "^1.22.19"
},
"scripts": {
"build": "turbo run build --no-cache",
"test": "turbo run test",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"lint:check": "npm run lint",
"lint:fix": "npm run lint --fix",
"format": "prettier --ignore-path .gitignore --check \"**/*.+(js|ts|json)\"",
"format:check": "prettier --ignore-path ../.gitignore --check \"**/*.+(js|ts|json)\"",
"format:fix": "prettier --ignore-path ../.gitignore --write \"**/*.+(js|ts|json)\""
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/source-map-support": "^0.5.10",
"@vitest/coverage-v8": "^3.2.6",
"esbuild": "^0.25.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"vitest": "^3.2.6"
},
"resolutions": {
"ajv": "^6.14.0",
"brace-expansion": "^1.1.12",
"braces": "^3.0.3",
"cross-spawn": "^7.0.5",
"diff": "^4.0.4",
"flatted": "^3.4.2",
"follow-redirects": "^1.15.6",
"form-data": "^4.0.4",
"js-yaml": "^4.1.1",
"micromatch": "^4.0.8",
"minimatch": "^3.1.4",
"picomatch": "^2.3.2"
},
"packageManager": "yarn@1.22.17"
}