-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 982 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
{
"name": "express-base",
"version": "1.0.0",
"main": "dist/src/index.ts",
"license": "MIT",
"scripts": {
"start:dev": "yarn build:live",
"start": "'ts-node' src/index.ts",
"build:live": "clear && nodemon --watch '*.ts' --exec 'ts-node' src/index.ts"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.5.1",
"express": "^4.18.2",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.9",
"@types/socket.io": "^3.0.2",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.0",
"multer": "^1.4.5-lts.1",
"reflect-metadata": "^0.1.13",
"sha3": "^2.1.4",
"socket.io": "^4.7.2"
}
}