-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.4 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/index.ts",
"dev": "tsc-watch --skipLibCheck --onSuccess \"node ./dist/index.js\"",
"prod": "node ./dist/index.js",
"build": "tsc"
},
"keywords": [],
"author": "Dhiway",
"license": "PRIVATE",
"dependencies": {
"@aws-sdk/client-s3": "^3.52.0",
"@aws-sdk/client-ses": "^3.12.0",
"@cord.network/sdk": "0.8.4-beta.1",
"@sendgrid/mail": "^7.3.0",
"dayjs": "^1.10.4",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-socket.io-session": "^1.3.5",
"handlebars": "^4.7.6",
"json-stable-stringify": "^1.0.1",
"jsonwebtoken": "^9.0.0",
"memorystore": "^1.6.4",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.7",
"nodemailer": "^6.7.2",
"pg": "^8.5.1",
"session-file-store": "^1.4.0",
"socket.io": "^4.4.1",
"tweetnacl": "^1.0.3",
"typeorm": "^0.2.31",
"useragent": "^2.3.0",
"uuid": "^8.3.2",
"xxhashjs": "^0.2.2"
},
"devDependencies": {
"@types/adm-zip": "^0.4.34",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.3",
"@types/express-socket.io-session": "^1.3.4",
"@types/gm": "^1.18.10",
"@types/json-diff": "^0.7.0",
"@types/json-stable-stringify": "^1.0.32",
"@types/jsonwebtoken": "^8.5.0",
"@types/multer": "^1.4.5",
"@types/node": "^14.14.9",
"@types/node-fetch": "^2.5.7",
"@types/nodemailer": "^6.4.1",
"@types/nodemailer-smtp-transport": "^2.7.4",
"@types/request-ip": "^0.0.35",
"@types/session-file-store": "^1.2.1",
"@types/sharp": "^0.26.0",
"@types/socket.io": "^3.0.2",
"@types/swagger-ui-express": "^4.1.3",
"@types/useragent": "^2.3.0",
"@types/uuid": "^8.3.0",
"@types/xxhashjs": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-plugin-unused-imports": "^2.0.0",
"tsc-watch": "^4.2.9",
"tslib": "^2.0.1",
"typescript": "^4.1.2"
}
}