-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 895 Bytes
/
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
{
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.0",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"query-string": "^8.1.0",
"ws": "^8.16.0"
},
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "nodemon --esm src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"type": "module",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/mysql": "^2.15.24",
"@types/node": "^20.10.5",
"@types/ws": "^8.5.10",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}