-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.03 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
{
"name": "solid-email-notifications",
"version": "0.0.1",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"format": "prettier 'src/**/*.ts' '**/*.{md,yml,yaml,json}' --write",
"lint": "eslint . --ext .ts",
"test": "mocha",
"generate-api-docs": "tsc && node dist/generate-api-docs.js"
},
"license": "MIT",
"devDependencies": {
"@solid/community-server": "^7.0.2",
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.3.5",
"@types/co-body": "^6.1.0",
"@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/maildev": "^0.0.4",
"@types/mocha": "^10.0.1",
"@types/n3": "^1.16.0",
"@types/node": "^20.4.2",
"@types/nodemailer": "^6.4.9",
"@types/parse-link-header": "^2.0.1",
"@types/sinon": "^10.0.15",
"@types/tough-cookie": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chai": "^4.3.7",
"cheerio": "^1.0.0-rc.12",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^5.0.0",
"maildev": "^2.1.0",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"rdf-namespaces": "^1.11.0",
"sinon": "^15.2.0",
"swagger-autogen": "^2.23.6",
"tough-cookie": "^4.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@inrupt/solid-client-authn-node": "^1.17.0",
"@koa/bodyparser": "^5.0.0",
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"@solid/access-token-verifier": "^2.0.5",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"bcryptjs": "^2.4.3",
"cross-fetch": "^4.0.0",
"css-authn": "^0.0.11",
"dotenv": "^16.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",
"parse-link-header": "^2.0.0",
"sequelize": "^6.32.1",
"sqlite3": "^5.1.6"
}
}