-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"name": "matrix-email-onboarding",
"version": "1.0.0",
"description": "Microservice to onboard users to Matrix rooms (or spaces) via their email addresses, even before they might have a Matrix account",
"license": "CC0-1.0",
"scripts": {
"start": "babel-node index.js",
"start:dev": "nodemon",
"cli": "babel-node cli.js"
},
"dependencies": {
"@inquirer/prompts": "^2.1.1",
"@nestjs/common": "^9.4.3",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^9.4.3",
"@nestjs/platform-express": "^9.0.0",
"csv-parse": "^5.4.0",
"eciesjs": "^0.3.17",
"hbs": "^4.2.0",
"is-email": "^1.0.2",
"lodash": "^4.17.21",
"matrix-js-sdk": "^26.0.1",
"nest-commander": "^3.8.0",
"nodemailer": "^6.9.3"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/node": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/register": "^7.18.6",
"@babel/runtime": "^7.18.6",
"@nestjs/testing": "^9.0.0",
"eslint": "^8.42.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-matrix-org": "^1.2.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
}
}