-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 964 Bytes
/
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
{
"private": true,
"version": "1.4.1",
"name": "@pleo-io/spa-edge-lambdas",
"dependencies": {
"@aws-sdk/client-s3": "^3.329.0"
},
"devDependencies": {
"@swc/jest": "0.2.36",
"@types/aws-lambda": "8.10.126",
"@types/jest": "29.5.8",
"@types/node": "20.8.6",
"@vercel/ncc": "0.38.1",
"jest": "29.7.0",
"prettier": "3.2.5",
"typescript": "5.2.2"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"bracketSpacing": false,
"arrowParens": "always",
"trailingComma": "none",
"proseWrap": "always"
},
"engines": {
"node": ">=18",
"pnpm": "9.x"
},
"jest": {
"clearMocks": true,
"testEnvironment": "node",
"transform": {
".+\\.(t|j)sx?$": [
"@swc/jest"
]
}
}
}