-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 870 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
{
"name": "ghost-convertkit-integration",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "serverless offline",
"deploy": "serverless deploy --stage production",
"redeploy": "serverless deploy function -f ghost-ck-integration --stage production",
"prettier": "prettier -w src",
"lint": "eslint 'src/**'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.1.1",
"serverless": "^3.38.0",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^13.3.2",
"serverless-plugin-warmup": "^8.3.0"
},
"dependencies": {
"@tryghost/admin-api": "^1.13.11",
"axios": "^1.6.5",
"axios-retry": "^4.0.0",
"dotenv": "^16.3.1",
"inquirer": "^9.2.12",
"zod": "^3.22.4"
}
}