-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 789 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 789 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
{
"name": "software-engineering-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/server.js",
"build": "tsc --project ./",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.12",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-session": "^1.17.2",
"jsdoc": "^3.6.10",
"mongoose": "^6.2.8",
"nodemon": "^2.0.15",
"socket.io": "^4.4.1",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}