-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.34 KB
/
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
44
45
46
47
48
49
50
51
52
{
"name": "ses-email-blast",
"version": "1.0.0",
"description": "CLI tool for sending emails through Amazon SES.",
"type": "module",
"scripts": {
"build": "tsc",
"lint": "eslint ./src/",
"start": "op run --no-masking --env-file='./prod.env' -- node prod/index.js",
"test": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhcarrigan/SendGrid-Experiment.git"
},
"author": " Naomi Carrigan",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nhcarrigan/SendGrid-Experiment/issues"
},
"homepage": "https://github.com/nhcarrigan/SendGrid-Experiment#readme",
"engines": {
"node": "20",
"pnpm": "9"
},
"devDependencies": {
"@nhcarrigan/eslint-config": "3.3.3",
"@nhcarrigan/prettier-config": "3.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/cli-progress": "3.11.6",
"@types/inquirer": "9.0.7",
"@types/node": "20.17.7",
"@vitest/coverage-istanbul": "1.6.0",
"eslint": "8.57.1",
"pre-commit": "1.2.2",
"prettier": "3.3.3",
"typescript": "5.7.2",
"vitest": "1.6.0"
},
"dependencies": {
"@aws-sdk/client-ses": "3.699.0",
"chalk": "5.3.0",
"cli-progress": "3.12.0",
"dotenv": "16.4.5",
"inquirer": "9.3.7",
"spinnies": "0.5.1"
},
"pre-commit": [
"lint",
"test"
]
}