-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "backend",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node index.ts",
"dev": "nodemon --exec ts-node index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"autocannon": "^8.0.0",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"debug": "^4.3.7",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"jsonwebtoken": "^9.0.2",
"make-error": "^1.3.6",
"mongoose": "^8.6.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.16",
"nodemon": "^3.1.7",
"redis": "^4.7.0",
"redis-server": "^1.2.2",
"xlsx": "^0.18.5",
"yn": "^5.0.0"
},
"description": "",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/node": "^22.7.5",
"@types/xlsx": "^0.0.35",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}