-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.28 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
76
77
78
79
80
81
{
"name": "chatty",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "ts-node tools/copyAssets",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc -p .",
"build": "npm-run-all clean lint tsc copy-assets",
"dev:start": "npm-run-all start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"prestart": "npm run build",
"start": "node .",
"postinstall": "npm run build",
"prod": "node dist/app.js",
"fun": "nodemon src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@trycourier/courier": "^3.12.0",
"async": "^3.2.3",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.2",
"config": "^3.3.7",
"connect-flash": "^0.1.1",
"cors": "^2.8.5",
"dayjs": "^1.11.0",
"dotenv": "^16.0.1",
"ejs": "^3.1.6",
"express": "^4.17.3",
"express-flash": "^0.0.2",
"express-session": "^1.17.2",
"fs-extra": "^10.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongoose": "^6.2.7",
"nanoid": "^3.3.1",
"nodemailer": "^6.7.3",
"nodemon": "^2.0.15",
"passport": "^0.5.2",
"passport-local-mongoose": "^7.0.0",
"pino": "^7.9.1",
"pino-pretty": "^7.5.4",
"shelljs": "^0.8.5",
"socket.io": "^4.4.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/async": "^3.2.12",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/config": "^0.0.41",
"@types/connect-flash": "^0.0.37",
"@types/cors": "^2.8.12",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/express-flash": "^0.0.2",
"@types/express-session": "^1.17.0",
"@types/fs-extra": "^9.0.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.180",
"@types/mongoose": "^5.11.97",
"@types/nanoid": "^3.0.0",
"@types/node": "^17.0.45",
"@types/nodemailer": "^6.4.4",
"@types/passport": "^1.0.7",
"@types/pino": "^7.0.5",
"@types/shelljs": "^0.8.12",
"@types/yup": "^0.29.13",
"npm-run-all": "^4.1.5",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"typescript": "^4.6.3"
}
}