-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 KB
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
{
"name": "collabberry-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "yarn lint && tsc && cp -r ./emailTemplates ./dist/src",
"start": "yarn build && node dist/src/index.js",
"start-background": "yarn build && node dist/src/roundsStartJob.index.js",
"export": "yarn build && node dist/src/export.js",
"dev": "npx ts-node-dev src/index.ts",
"lint": "tslint --fix -c tslint.json 'src/**/*.ts'",
"test": "mocha --config test/.mocharc.yml"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.669.0",
"@aws-sdk/lib-storage": "^3.669.0",
"cors": "2.8.5",
"crypto": "1.0.1",
"desm": "1.3.1",
"dotenv": "^16.4.5",
"ethers": "^6.13.5",
"express": "^4.20.0",
"express-validator": "^7.0.1",
"inversify": "6.0.2",
"joi": "^17.4.0",
"jsonwebtoken": "9.0.2",
"multer": "^1.4.4",
"mysql2":"^3.11.3",
"node-cron": "^3.0.0",
"nodemailer": "^6.6.3",
"passport": "^0.7.0",
"postmark": "^4.0.5",
"reflect-metadata": "^0.2.2",
"siwe": "^2.3.2",
"tslint-config-prettier": "^1.18.0",
"typeorm": "^0.3.20",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/chai-http": "^4.2.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/mocha": "^10.0.6",
"@types/multer": "^1.4.12",
"@types/node": "^20.12.2",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.16",
"@types/uuid": "^10.0.0",
"chai": "^5.1.1",
"chai-http": "^4.4.0",
"csv-writer":"^1.6.0",
"mocha": "^10.4.0",
"ts-node": "^10.9.2",
"ts-node-dev": "2.0.0",
"tslint": "^6.1.3",
"typescript": "^5.4.3"
}
}