-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1006 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
{
"name": "restaurant-managing-backend",
"version": "1.0.0",
"description": "Project for Tecnologie e Applicazione Web",
"main": "server.js",
"scripts": {
"build": "tsc",
"dev": "tsc-watch --project . --outDir ./dist --onSuccess \"nodemon dist/server.js\"",
"start": "node dist/server.js",
"type": "module"
},
"author": "Tudor Croitor",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^13.13.51",
"@types/passport": "^1.0.6",
"@types/passport-http": "^0.3.9",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"dependencies": {
"all": "^0.0.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-jwt": "^8.4.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.12.7",
"passport": "^0.6.0",
"passport-http": "^0.3.0",
"socket.io": "^4.6.1",
"tsc-watch": "^6.0.4"
}
}