forked from solidcouch/simple-email-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.37 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "simple-email-notifications",
"version": "0.0.1",
"main": "dist/index.js",
"scripts": {
"start": "yarn build && node dist/index.js",
"build": "rm -rf dist && tsc --project tsconfig.production.json && yarn copy-hbs",
"copy-hbs": "cp src/templates/*.hbs dist/templates && cp src/templates/*.css dist/templates",
"format": "prettier 'src/**/*.ts' '**/*.{md,yml,yaml,json}' --write",
"lint": "eslint . --ext .ts",
"test": "mocha",
"generate-key": "openssl ecparam -name prime256v1 -genkey -noout -out ecdsa-p256-private.pem",
"generate-api-docs": "tsc && node dist/generate-api-docs.js"
},
"license": "MIT",
"devDependencies": {
"@solid/community-server": "^7.0.2",
"@types/chai": "^4.3.5",
"@types/maildev": "^0.0.7",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.19.0",
"chai": "^4.3.7",
"cheerio": "^1.0.0-rc.12",
"cross-fetch": "^4.0.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.0.0",
"maildev": "^2.1.0",
"mocha": "^10.2.0",
"msw": "^2.0.14",
"prettier": "^3.0.0",
"puppeteer": "^22.2.0",
"sinon": "^15.2.0",
"swagger-autogen": "^2.23.6",
"ts-node": "^10.9.1"
},
"dependencies": {
"@koa/bodyparser": "^5.0.0",
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"@ldhop/core": "^0.0.0-alpha.1",
"@solid/access-token-verifier": "^2.0.5",
"@types/co-body": "^6.1.0",
"@types/fs-extra": "^11.0.4",
"@types/jsonwebtoken": "^9.0.5",
"@types/koa": "^2.13.7",
"@types/koa-static": "^4.0.3",
"@types/koa__cors": "^4.0.1",
"@types/koa__router": "^12.0.0",
"@types/lodash": "^4.14.196",
"@types/n3": "^1.16.0",
"@types/node": "^20.4.2",
"@types/nodemailer": "^6.4.9",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"css-authn": "^0.0.15-alpha.3",
"dotenv": "^16.0.0",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"jsonwebtoken": "^9.0.2",
"juice": "^10.0.0",
"koa": "^2.14.2",
"koa-helmet": "^7.0.2",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"n3": "^1.17.0",
"nodemailer": "^6.9.4",
"rdf-namespaces": "^1.11.0",
"typescript": "^5.1.6"
}
}