-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 900 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
{
"name": "ynab-lambda",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"package": "yarn run build && zip -r ./dist/package.zip ./dist/index.js",
"test": "jest",
"build": "tsc"
},
"dependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/aws-lambda": "^8.10.51",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@types/papaparse": "^5.0.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"jest": "^29.7.0",
"papaparse": "^5.2.0",
"ts-jest": "^29.1.1",
"ts-loader": "^7.0.1",
"typescript": "^5.3.3",
"ynab": "^1.19.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^7.2.0",
"prettier": "^2.2.1"
}
}