-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 837 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
42
43
{
"name": "appointment-service",
"version": "0.1.0",
"private": true,
"scripts": {
"test": "jest"
},
"dependencies": {
"@types/aws-lambda": "^8.10.85",
"@types/uuid": "^8.3.3",
"aws-sdk": "^2.1037.0",
"uuid": "^8.3.2"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/node": "^16.11.10",
"babel-jest": "^27.3.1",
"jest": "^27.3.1",
"serverless-plugin-typescript": "^2.1.0",
"typescript": "^4.5.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"moduleDirectories": [
"node_modules"
],
"testEnvironment": "node",
"roots": [
"<rootDir>"
],
"modulePaths": [
"<rootDir>"
]
}
}