-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1021 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1021 Bytes
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
{
"name": "express-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node index.ts",
"dev": "nodemon index.ts",
"test": "mocha .test.js --exit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/mongoose": "^5.11.97",
"bcrypt": "^5.0.1",
"child_process": "^1.0.2",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^5.0.0-beta.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^10.4.0",
"moment": "^2.30.1",
"mongoose": "^6.12.8",
"multer": "^1.4.5-lts.1",
"music-metadata": "^7.14.0",
"nodemailer": "^6.7.2",
"otp-generator": "^4.0.1",
"pg": "^8.11.5",
"prettier": "^2.8.7",
"socket.io": "^4.7.5",
"socketio-file-upload": "^0.7.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"concurrently": "^8.2.2",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}