-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "optiboy",
"version": "1.0.0",
"description": "Collect email addresses with double opt-in.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timweiss/optiboy.git"
},
"keywords": [
"double opt-in",
"email"
],
"author": "Tim Weiß <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/timweiss/optiboy/issues"
},
"homepage": "https://github.com/timweiss/optiboy#readme",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/mjml": "^4.7.1",
"@types/nodemailer": "^6.4.7",
"@types/nunjucks": "^3.2.3",
"@types/pg": "^8.6.6",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"typescript": "^5.0.4"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"ksuid": "^3.0.0",
"mjml": "^4.14.1",
"nodemailer": "^6.9.2",
"nunjucks": "^3.2.4",
"pg": "^8.10.0"
}
}